From df7042942bde67417026b7ec2cb72e013cd2e7c3 Mon Sep 17 00:00:00 2001 From: c0de Date: Thu, 28 Dec 2023 22:08:20 -0600 Subject: [PATCH] put footer text into own dict --- templates/footer.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/footer.html b/templates/footer.html index 13ddaf7..8cb6030 100644 --- a/templates/footer.html +++ b/templates/footer.html @@ -10,10 +10,10 @@

Back to top

-

{{ main_line | default('') }}

+

{{ footer.main_line | default('') }}

- {% if extra_lines %} - {% for line in extra_lines %} + {% if footer.extra_lines %} + {% for line in footer.extra_lines %} {% if line %}

{{ line }}

{% endif %}