diff options
author | Justin Mayer <entroP@gmail.com> | 2013-07-19 09:20:26 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-07-19 09:20:26 -0700 |
commit | 96c8cbbcf6006e37f79b00a9d01a9ced28d6b739 (patch) | |
tree | afcb4befe178942f5739819dc41c1e784f7a454a /gum | |
parent | 08364df4285e416e053562d418d11270201c87d7 (diff) | |
parent | 59779ffc00461c608fa95b43930db89f4fa1e00b (diff) | |
download | pelican-themes-96c8cbbcf6006e37f79b00a9d01a9ced28d6b739.tar.gz |
Merge pull request #119 from cdhowie/master
Gum: Fix article titles, fix unescaped tags
Diffstat (limited to 'gum')
-rw-r--r-- | gum/templates/article.html | 1 | ||||
-rw-r--r-- | gum/templates/index.html | 2 | ||||
-rw-r--r-- | gum/templates/sidebar.html | 2 | ||||
-rw-r--r-- | gum/templates/tag.html | 2 | ||||
-rw-r--r-- | gum/templates/tags.html | 2 |
5 files changed, 5 insertions, 4 deletions
diff --git a/gum/templates/article.html b/gum/templates/article.html index e43e48e..c1887f4 100644 --- a/gum/templates/article.html +++ b/gum/templates/article.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{% endblock %} {% block content %} <section id="content" class="body"> diff --git a/gum/templates/index.html b/gum/templates/index.html index 83abf70..aae5ea5 100644 --- a/gum/templates/index.html +++ b/gum/templates/index.html @@ -28,7 +28,7 @@ {% if article.tags %} <span>Tagged as : </span> {% for tag in article.tags %} - <a class="danger label" href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> + <a class="danger label" href="{{ SITEURL }}/{{ tag.url }}">{{ tag|e }}</a> {% endfor %} {% endif %} </div> 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 %} diff --git a/gum/templates/tag.html b/gum/templates/tag.html index 68cdcba..dc697fe 100644 --- a/gum/templates/tag.html +++ b/gum/templates/tag.html @@ -1,2 +1,2 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %} +{% block title %}{{ SITENAME }} - {{ tag|e }}{% endblock %} diff --git a/gum/templates/tags.html b/gum/templates/tags.html index 862eff6..ec380b7 100644 --- a/gum/templates/tags.html +++ b/gum/templates/tags.html @@ -5,7 +5,7 @@ {% for tag in tag_cloud %} <li class="tag-{{ tag.1 }}"> <a href="{{ SITEURL }}/{{ tag.0.url }}"> - <i class="icon-tag icon-large"></i>{{ tag.0 }} + <i class="icon-tag icon-large"></i>{{ tag.0|e }} </a> </li> {% endfor %} |