From ca7ebe6cb0018ef523f0cd9a90814ad845e201e2 Mon Sep 17 00:00:00 2001 From: Adam Garstang Date: Sat, 15 Nov 2014 18:35:57 +0000 Subject: Fix hard-coded feeds and feed urls in aboutwilson/templates/base.html --- aboutwilson/templates/base.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/aboutwilson/templates/base.html b/aboutwilson/templates/base.html index 26eddd8..a4423b4 100644 --- a/aboutwilson/templates/base.html +++ b/aboutwilson/templates/base.html @@ -48,7 +48,12 @@
  • {{page.title}}
  • {% endfor %} {% endif %} -
  • rss
  • + {% if FEED_ALL_ATOM %} +
  • atom
  • + {% endif %} + {% if FEED_ALL_RSS %} +
  • rss
  • + {% endif %}
    @@ -107,6 +112,6 @@ jQuery(document).ready(function($) { }); {% include "analytics.html" %} -{% include "github.html" %} +{% include "github.html" %} -- cgit