aboutsummaryrefslogtreecommitdiffstats
path: root/SOB/templates/article_infos_bottom.html
diff options
context:
space:
mode:
authorGoat Avenger <goetax@openmailbox.org>2017-04-08 12:03:51 +0000
committerAlexis Metaireau <alexis@notmyidea.org>2017-04-08 14:03:51 +0200
commitcac94aebc92275e6f651982424ea4a06d9715a5d (patch)
tree35a2e323664a80320d918206b92d7b6b5bedc23f /SOB/templates/article_infos_bottom.html
parent5c231ceade17e7f5b1bba90e845dd2d17e54da1c (diff)
downloadpelican-themes-cac94aebc92275e6f651982424ea4a06d9715a5d.tar.gz
Add SOB theme (#362)
Diffstat (limited to 'SOB/templates/article_infos_bottom.html')
-rw-r--r--SOB/templates/article_infos_bottom.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/SOB/templates/article_infos_bottom.html b/SOB/templates/article_infos_bottom.html
new file mode 100644
index 0000000..3ebb64a
--- /dev/null
+++ b/SOB/templates/article_infos_bottom.html
@@ -0,0 +1,17 @@
+ Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
+
+ {% if article.tags %}
+ <br/>
+ Tagged:
+ {% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }} </a>
+ {% endfor %}
+ {% endif %}
+
+ {% if PDF_PROCESSOR %}
+ <p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a></p>
+ {% endif %}
+
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(article) }}
+