From 968dae7551d6169210a48b4fd75dd5574e3a45c3 Mon Sep 17 00:00:00 2001 From: Tim Shaffer Date: Thu, 27 Aug 2015 15:52:17 -0400 Subject: [PATCH] Move the "tagged" bullet inside the conditional. --- templates/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index fced50d..941f012 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,8 +6,9 @@

{{ article.title }}

- Posted on {{ article.locale_date }} in {{ article.category }} • - {% if article.tags %}Tagged with + Posted on {{ article.locale_date }} in {{ article.category }} + {% if article.tags %} + • Tagged with {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %}