- - {{ article.locale_date }}
- - ·
- - {{ article.category }}
- {% if article.authors and ARTICLE_AUTHORS %}
- - ·
- - By
- {% for author in article.authors %}
- {{ author }}{% if not loop.last %}, {% endif %}
- {% endfor %}
+
-
+
+ {{ article.locale_date }}
+
+ - ·
+ -
+
+ {{ article.category }}
- {% endif %}
{% if article.tags %}
- ·
-
+
{% for tag in article.tags %}
#{{ tag }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
+ {% if article.authors and ARTICLE_AUTHORS %}
+ - ·
+ -
+
+ {% for author in article.authors %}
+ {{ author }}{% if not loop.last %}, {% endif %}
+ {% endfor %}
+
+ {% endif %}
{{ article.content }}
diff --git a/alchemy/templates/index.html b/alchemy/templates/index.html
index bc4ff5c..b50ac6d 100644
--- a/alchemy/templates/index.html
+++ b/alchemy/templates/index.html
@@ -20,7 +20,7 @@ All Articles
{{ article.locale_date }}
{% if article.authors and ARTICLE_AUTHORS %}
- By
+
{% for author in article.authors %}
{{ author }}{% if not loop.last %}, {% endif %}
{% endfor %}