From 6e0954d76e890584e3a5249fbdb8d2c90547621e Mon Sep 17 00:00:00 2001 From: Chris Howie Date: Fri, 19 Jul 2013 15:32:17 +0000 Subject: [PATCH 1/2] Gum: Use article title as the title of the generated document --- gum/templates/article.html | 1 + 1 file changed, 1 insertion(+) 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 %}
From 59779ffc00461c608fa95b43930db89f4fa1e00b Mon Sep 17 00:00:00 2001 From: Chris Howie Date: Thu, 18 Jul 2013 16:43:49 +0000 Subject: [PATCH 2/2] Gum: HTML-escape tag names when rendering them --- gum/templates/index.html | 2 +- gum/templates/sidebar.html | 2 +- gum/templates/tag.html | 2 +- gum/templates/tags.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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 %} Tagged as : {% for tag in article.tags %} - {{ tag }} + {{ tag|e }} {% endfor %} {% endif %} 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 %} {% 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 %}
  • - {{ tag.0 }} + {{ tag.0|e }}
  • {% endfor %}