From e10af4f9635a844eec1933020ac324f70c889a0e Mon Sep 17 00:00:00 2001 From: The Dod Date: Mon, 5 Nov 2012 21:23:31 +0700 Subject: No empty "Tags:" for articles also fixed stupid typo --- waterspill-en/templates/article.html | 4 ++-- waterspill-en/templates/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'waterspill-en/templates') diff --git a/waterspill-en/templates/article.html b/waterspill-en/templates/article.html index dcef284..a4aa4de 100644 --- a/waterspill-en/templates/article.html +++ b/waterspill-en/templates/article.html @@ -12,9 +12,9 @@ {% include 'twitter.html' %}

By {{ article.author }}{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: {{ article.category }}{% endif %}

-

Tags: {% for tag in article.tags %} + {% if article.tags %}

Tags: {% for tag in article.tags %} {{ tag }} / -{% endfor %}

+{% endfor %}{% endif %} {% if DISQUS_SITENAME %} diff --git a/waterspill-en/templates/index.html b/waterspill-en/templates/index.html index fecab05..338155a 100644 --- a/waterspill-en/templates/index.html +++ b/waterspill-en/templates/index.html @@ -32,7 +32,7 @@ {{ article.summary }}

By {{ article.author }}{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: {{ article.category }}{% endif %}

- Cuntinue reading … + Continue reading … -- cgit