aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/base.html
diff options
context:
space:
mode:
authorTobias Schmidl <tobias@schmidl.cc>2017-10-02 15:42:20 +0200
committerTobias Schmidl <tobias@schmidl.cc>2017-10-02 15:46:47 +0200
commit3ed3f071456759c6309387eb1600a869e36a185b (patch)
treef049d3acabb67413604f0625256fc090c374d879 /Just-Read/templates/base.html
parent6f533933d459774df728dff9fb5c48249671777d (diff)
downloadpelican-themes-3ed3f071456759c6309387eb1600a869e36a185b.tar.gz
[Just-Read] Repaired footer
We sometimes have a real FOOTERTEXT. Then it's not sufficient to just print the author.
Diffstat (limited to 'Just-Read/templates/base.html')
-rw-r--r--Just-Read/templates/base.html6
1 files changed, 5 insertions, 1 deletions
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 %}
</ul>
- <p role="contentinfo">© 2012 {{ AUTHOR }}<br>
+ <p role="contentinfo">{% if FOOTERTEXT %}
+ {{ FOOTERTEXT }}
+ {% else %}
+ © 2017 {{ AUTHOR }}
+ {% endif %}<br>
Proudly powered by <a href="http://alexis.notmyidea.org/pelican/">Pelican</a>.</p>
</div>
</footer>