aboutsummaryrefslogtreecommitdiff
path: root/bgstack15-gallery-theme/templates/footer.html
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-02-01 09:07:23 -0500
committerB Stack <bgstack15@gmail.com>2021-02-01 09:07:23 -0500
commita4481dc007ff202882b783ed4b36e03a8b4c1d05 (patch)
tree0f8b5ccb6ea5e966e8d517b07936479ef49b3516 /bgstack15-gallery-theme/templates/footer.html
downloadgallery-a4481dc007ff202882b783ed4b36e03a8b4c1d05.tar.gz
gallery-a4481dc007ff202882b783ed4b36e03a8b4c1d05.tar.bz2
gallery-a4481dc007ff202882b783ed4b36e03a8b4c1d05.zip
initial commit
Diffstat (limited to 'bgstack15-gallery-theme/templates/footer.html')
-rw-r--r--bgstack15-gallery-theme/templates/footer.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/bgstack15-gallery-theme/templates/footer.html b/bgstack15-gallery-theme/templates/footer.html
new file mode 100644
index 0000000..52f7fb0
--- /dev/null
+++ b/bgstack15-gallery-theme/templates/footer.html
@@ -0,0 +1,16 @@
+<footer>
+ <p>
+ {% if album.author %}
+ <span>&copy; {{ album.author }}</span>
+ {% endif %}
+ {# removed "generated by sigal" text from original footer.html bgstack15 #}
+ {% if 'sigal.plugins.feeds' in settings.plugins %}
+ {% if settings.rss_feed %}
+ <span><a href={{ settings.rss_feed.feed_url }}>RSS Feed</a></span>
+ {% endif %}
+ {% if settings.atom_feed %}
+ <span><a href={{ settings.atom_feed.feed_url }}>Atom Feed</a></span>
+ {% endif %}
+ {% endif %}
+ </p>
+</footer>
bgstack15