diff options
author | Leonardo Giordani <giordani.leonardo@gmail.com> | 2014-10-31 11:03:17 +0100 |
---|---|---|
committer | Leonardo Giordani <giordani.leonardo@gmail.com> | 2014-10-31 11:03:17 +0100 |
commit | a6bcb10fac97726daa5dab7d53d2f28274b7f98c (patch) | |
tree | a25c4d320b295bfb9221c4d7759ace9deef222b6 /pelican-bootstrap3 | |
parent | 228b474cdbf25303dac8e3a375efa4d5c8ab19ac (diff) | |
download | pelican-themes-a6bcb10fac97726daa5dab7d53d2f28274b7f98c.tar.gz |
Category feeds now use category.slug
Diffstat (limited to 'pelican-bootstrap3')
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 070dad2..d71a5c5 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -100,7 +100,7 @@ {% endif %} {% if category and CATEGORY_FEED_ATOM %} - <link href="{{ SITEURL }}/{{ CATEGORY_FEED_ATOM|format(category) }}" type="application/atom+xml" rel="alternate" + <link href="{{ SITEURL }}/{{ CATEGORY_FEED_ATOM|format(category.slug) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} {{ category }} ATOM Feed"/> {% endif %} |