diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-05 10:32:37 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-05 10:32:37 +0200 |
commit | 770ef6ab748ec6070a7eb2eec8626dc5338d6fd5 (patch) | |
tree | bec9b2ae2d62a576602c3a62f4e99a07522d3ed9 /theme/templates/tag.html | |
parent | 5fbaa084647548e60f9a037096ecbb84a8c84e90 (diff) |
Switch to pelican4.1
Diffstat (limited to 'theme/templates/tag.html')
-rwxr-xr-x | theme/templates/tag.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/tag.html b/theme/templates/tag.html index 496d0e6..dbe2d82 100755 --- a/theme/templates/tag.html +++ b/theme/templates/tag.html @@ -9,11 +9,11 @@ {% endif %} {% if TAG_FEED_RSS %} - <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS % page_name|replace("tag/", "")|e|lower}}" ><img src="../theme/images/rss.png" /></a> + <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS.format(slug = page_name|replace("tag/", "")|e|lower)}}" ><img src="../theme/images/rss.png" /></a> {% endif %} {% if TAG_FEED_ATOM %} - <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM % page_name|replace("tag/", "")|e|lower}}" ><img src="../theme/images/atom.png" /></a> + <a href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM.format(slug = page_name|replace("tag/", "")|e|lower)}}" ><img src="../theme/images/atom.png" /></a> {% endif %} {% endblock %} |