put footer text into own dict

This commit is contained in:
c0de 2023-12-28 22:08:20 -06:00
parent d6c66161a5
commit df7042942b
1 changed files with 3 additions and 3 deletions

View File

@ -10,10 +10,10 @@
<p class="float-end mb-1">
<a href="#">Back to top</a>
</p>
<p class="mb-1">{{ main_line | default('') }}</p>
<p class="mb-1">{{ footer.main_line | default('') }}</p>
{% if extra_lines %}
{% for line in extra_lines %}
{% if footer.extra_lines %}
{% for line in footer.extra_lines %}
{% if line %}
<p class="mb-0">{{ line }}</p>
{% endif %}