14 lines
376 B
Cheetah
14 lines
376 B
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
{% import 'base_helper.tmpl' as base with context %}
|
|
|
|
{% macro html_footer() %}
|
|
{% if content_footer %}
|
|
<footer id="footer">
|
|
<span class="copyright">
|
|
{{ content_footer }}
|
|
</span>
|
|
</p>
|
|
{{ template_hooks['page_footer']() }}
|
|
</footer>
|
|
{% endif %}
|
|
{% endmacro %}
|