From 3ed3f071456759c6309387eb1600a869e36a185b Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Mon, 2 Oct 2017 15:42:20 +0200 Subject: [Just-Read] Repaired footer We sometimes have a real FOOTERTEXT. Then it's not sufficient to just print the author. --- Just-Read/templates/base.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Just-Read/templates/base.html b/Just-Read/templates/base.html index bb86107..cf31d29 100644 --- a/Just-Read/templates/base.html +++ b/Just-Read/templates/base.html @@ -54,7 +54,11 @@ {% endfor %} -

© 2012 {{ AUTHOR }}
+

{% if FOOTERTEXT %} + {{ FOOTERTEXT }} + {% else %} + © 2017 {{ AUTHOR }} + {% endif %}
Proudly powered by Pelican.

-- cgit