blob: 7fcf616c47de192040588823d316481d33fdb811 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{# -*- coding: utf-8 -*- #}
{% import 'base_helper.tmpl' as base with context %}
{% macro html_footer() %}
{% if content_footer %}
<footer id="footer" role="contentinfo">
<p>{{ content_footer }}</p>
{{ template_hooks['page_footer']() }}
</footer>
{% endif %}
{% endmacro %}
|