diff options
author | Chris Howie <me@chrishowie.com> | 2013-07-18 16:43:49 +0000 |
---|---|---|
committer | Chris Howie <me@chrishowie.com> | 2013-07-19 15:47:41 +0000 |
commit | 59779ffc00461c608fa95b43930db89f4fa1e00b (patch) | |
tree | afcb4befe178942f5739819dc41c1e784f7a454a /gum/templates/sidebar.html | |
parent | 6e0954d76e890584e3a5249fbdb8d2c90547621e (diff) | |
download | pelican-themes-59779ffc00461c608fa95b43930db89f4fa1e00b.tar.gz |
Gum: HTML-escape tag names when rendering them
Diffstat (limited to 'gum/templates/sidebar.html')
-rw-r--r-- | gum/templates/sidebar.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html index b0cd52b..442549e 100644 --- a/gum/templates/sidebar.html +++ b/gum/templates/sidebar.html @@ -33,7 +33,7 @@ {% if tags %} <ul> {% for tag in tag_cloud %} - <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li> + <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0|e }}</a></li> {% endfor %} </ul> {% endif %} |