thirdculture-werc/lib/default_master.tpl
Uriel 673bdaf664 Reorg headers, http headers now are echo-ed from werc.rc instead of being part of headers.tpl.
This fixes some bugs in the handling HEAD and makes things a bit more clear.
2009-03-13 13:04:25 +01:00

35 lines
669 B
Smarty

<div id="header">
<div class="superHeader">
% cat `{ get_lib_file top_bar.inc }
</div>
<div class="midHeader">
<h1 class="headerTitle"><a href="/">%($"siteTitle%)<span id="headerSubTitle">%( $"siteSubTitle%)</span></a></h1>
</div>
<div class="subHeader"><br /></div>
</div>
% if(! ~ $#handlers_bar_left 0) {
<div id="side-bar">
% for(h in $handlers_bar_left) {
<div>
% run_handler $$h
</div>
% }
</div>
% }
<div id="main-copy">
% run_handlers $handlers_body_head
% run_handler $handler_body_main
% run_handlers $handlers_body_foot
</div>
<div id="footer">
% cat `{ get_lib_file footer.inc }
</div>