aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/taglist.html
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap2/templates/taglist.html')
-rw-r--r--bootstrap2/templates/taglist.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap2/templates/taglist.html b/bootstrap2/templates/taglist.html
new file mode 100644
index 0000000..a4b3446
--- /dev/null
+++ b/bootstrap2/templates/taglist.html
@@ -0,0 +1,12 @@
+{% if article.tags %}
+ <p>tags:
+ {% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+ {% endfor %}
+ </p>
+{% endif %}
+{% if PDF_PROCESSOR %}
+ <p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">
+ get the pdf
+ </a></p>
+{% endif %}