aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/taglist.html
diff options
context:
space:
mode:
authorJiachen Yang <farseerfc@gmail.com>2012-03-12 07:17:06 +0900
committerJiachen Yang <farseerfc@gmail.com>2012-03-12 07:17:06 +0900
commit8f363a24355aba06f54ea4615facf7c278b859d9 (patch)
tree12c25950888ff79f7d2c81f14fea54a98d5b92f2 /bootstrap2/templates/taglist.html
parentf567ee85739eb9c9732aea09339bd9b7825891ff (diff)
downloadpelican-themes-8f363a24355aba06f54ea4615facf7c278b859d9.zip
pelican-themes-8f363a24355aba06f54ea4615facf7c278b859d9.tar.gz
pelican-themes-8f363a24355aba06f54ea4615facf7c278b859d9.tar.bz2
minor changes, added license file
Diffstat (limited to 'bootstrap2/templates/taglist.html')
-rw-r--r--bootstrap2/templates/taglist.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap2/templates/taglist.html b/bootstrap2/templates/taglist.html
index c7d5371..c87ec0e 100644
--- a/bootstrap2/templates/taglist.html
+++ b/bootstrap2/templates/taglist.html
@@ -1,6 +1,6 @@
{% if article.tags %}
-<span class="label label-warning">Tags</span>
+<span class="label">Tags</span>
{% for tag in article.tags %}
- <a href="{{ SITEURL }}/{{ tag.url }}" class="btn btn-warning xsmall">{{ tag }}</a>
+ <a href="{{ SITEURL }}/{{ tag.url }}"><i class="icon-tag"></i>{{ tag }}</a>
{% endfor %}
{% endif %}