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.html14
1 files changed, 4 insertions, 10 deletions
diff --git a/bootstrap2/templates/taglist.html b/bootstrap2/templates/taglist.html
index a4b3446..c7d5371 100644
--- a/bootstrap2/templates/taglist.html
+++ b/bootstrap2/templates/taglist.html
@@ -1,12 +1,6 @@
{% 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>
+<span class="label label-warning">Tags</span>
+{% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}" class="btn btn-warning xsmall">{{ tag }}</a>
+{% endfor %}
{% endif %}