From 8ef32802eef326da10838348a80c38c6bf465aad Mon Sep 17 00:00:00 2001 From: tverrbjelke Date: Thu, 26 Sep 2013 13:59:52 +0200 Subject: see commit 2d81aec3b2509d56c1f3d99df3ad94a0d15d7e7d see http://querbalken.net/howto-activate-feeding-for-pelican-blog-en.html Extended Pelican theme bootstrap For firefox dynamic-bookmark the metadata were only aware of FEED_ALL_ATOM and FEED_ALL_RSS, but the docs http://docs.getpelican.com/en/latest/settings.html also name FEED_ATOM and FEED_RSS. So I added awareness for them. Since the Theme did not show any menu-link for the feeds, I did NOT add them. --- bootstrap/templates/base.html | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'bootstrap/templates') diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index 45ddcdc..e9edd0e 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -16,13 +16,22 @@ - - {% if FEED_ALL_ATOM %} - - {% endif %} - {% if FEED_ALL_RSS %} - - {% endif %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + + {% if FEED_ATOM %} + + {% endif %} + + {% if FEED_ALL_RSS %} + + {% endif %} + + {% if FEED_RSS %} + + {% endif %} {% include "analytics.html" %} {% include "disqus.html" %} -- cgit