blob: db44a67e798c9ff7168dd0b095518f97c3817e02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{# -*- coding: utf-8 -*- #}
{% macro html_footer() %}
{% if content_footer %}
<footer id="footer">
<p>{{ content_footer }}</p>
{{ template_hooks['page_footer']() }}
</footer>
{% endif %}
{% endmacro %}
|