summaryrefslogtreecommitdiff
path: root/themes/elenq/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/elenq/templates/article.html')
-rw-r--r--themes/elenq/templates/article.html17
1 files changed, 16 insertions, 1 deletions
diff --git a/themes/elenq/templates/article.html b/themes/elenq/templates/article.html
index 07d5470..868b8bb 100644
--- a/themes/elenq/templates/article.html
+++ b/themes/elenq/templates/article.html
@@ -19,7 +19,8 @@
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
- </header>
+
+
<footer class="post-info">
<time class="published" datetime="{{ article.date.isoformat() }}">
{{ article.locale_date }}
@@ -42,6 +43,20 @@
</div>
{% endif %}
</footer><!-- /.post-info -->
+
+ {% if article.tags %}
+ <blockquote class="series">
+ <p>
+ From the series:
+ {% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+ {% endfor %}
+ </p>
+ </blockquote>
+ {% endif %}
+ </header>
+
+
<div class="entry-content">
{{ article.content }}
</div><!-- /.entry-content -->