From 44323739f890512932542a4a468df616e9f231e3 Mon Sep 17 00:00:00 2001 From: felderado Date: Fri, 17 Oct 2014 08:37:21 -0500 Subject: Fix FEED URLs You're supposed to prepend FEED_DOMAIN to the FEED variables according to the documentation so you can use an external feed domain. From the docs: "Since feed URLs should always be absolute..." Also, those FEED_ATOM, etc variables were bare with no / at the beginning so they were broken. You're not supposed to be putting a / at the beginning of your FEED_ variables in pelicanconf.py. From the docs: FEED_ALL_ATOM ('feeds/all.atom.xml') --- tuxlite_tbs/templates/base.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tuxlite_tbs') diff --git a/tuxlite_tbs/templates/base.html b/tuxlite_tbs/templates/base.html index 866d6a5..258fe89 100644 --- a/tuxlite_tbs/templates/base.html +++ b/tuxlite_tbs/templates/base.html @@ -20,16 +20,16 @@ {% if FEED_ALL_ATOM %} - + {% endif %} {% if FEED_ATOM %} - + {% endif %} {% if FEED_RSS %} - + {% endif %} {% if FEED_ALL_RSS %} - + {% endif %} -- cgit