diff options
Diffstat (limited to 'Just-Read/templates')
-rw-r--r-- | Just-Read/templates/base.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Just-Read/templates/base.html b/Just-Read/templates/base.html index cdb865b..bb86107 100644 --- a/Just-Read/templates/base.html +++ b/Just-Read/templates/base.html @@ -18,8 +18,9 @@ {% block scripts %} {% endblock %} - - <link href="{{ SITEURL }}/{{ FEED }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" /> + {% if FEED_ATOM %} + <link href="{{ SITEURL }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" /> + {% endif %} {% if FEED_RSS %} <link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" /> {% endif %} |