22 lines
No EOL
578 B
Cheetah
22 lines
No EOL
578 B
Cheetah
## -*- coding: utf-8 -*-
|
|
<%namespace name="base" file="base_helper.tmpl" import="*"/>
|
|
<%namespace name="header" file="base_header.tmpl" import="*"/>
|
|
<%namespace name="footer" file="base_footer.tmpl" import="*"/>
|
|
${set_locale(lang)}
|
|
${base.html_headstart()}
|
|
<%block name="extra_head">
|
|
### Leave this block alone.
|
|
</%block>
|
|
${template_hooks['extra_head']()}
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
${header.html_header()}
|
|
<section class="main-content">
|
|
<%block name="content"></%block>
|
|
${footer.html_footer()}
|
|
</section>
|
|
${body_end}
|
|
${template_hooks['body_end']()}
|
|
</body>
|
|
</html> |