From 9242ff3cb79135497403d1327be9badc6d834df9 Mon Sep 17 00:00:00 2001 From: lynix Date: Fri, 10 Apr 2015 21:30:59 +0200 Subject: [PATCH] show tags in article view --- alchemy/templates/article.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/alchemy/templates/article.html b/alchemy/templates/article.html index 375cab9..ab5d9ec 100644 --- a/alchemy/templates/article.html +++ b/alchemy/templates/article.html @@ -28,6 +28,14 @@
  • {{ article.category }}
  • + {% if article.tags %} +
  • ·
  • +
  • + {% for tag in article.tags %} + {{ tag }}{% if not loop.last %}, {% endif %} + {% endfor %} +
  • + {% endif %} {% if article.author and SHOW_ARTICLE_AUTHOR %}
  • ·