24 lines
608 B
HTML
24 lines
608 B
HTML
![]() |
{* Including Global Header *}
|
||
|
{include file="$style_dir/global_header.html"}
|
||
|
<html>
|
||
|
<body>
|
||
|
<div id="body">
|
||
|
<!-- Including Commong header -->
|
||
|
{include file="$style_dir/header.html" }
|
||
|
{include file="$style_dir/message.html"}
|
||
|
<div id="content_container">
|
||
|
<div id="content">
|
||
|
{foreach from=$template_files item=file}
|
||
|
{include file="$style_dir/$file" }
|
||
|
{/foreach}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div id="footer">
|
||
|
<div class="footer">
|
||
|
© {$title} {$smarty.now|date_format:"%Y"}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|