aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:27 -0700
committerAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:27 -0700
commitcc809c34841e0cb25cde42cff85528b05581e1a1 (patch)
tree61b0caad6e581f233edde0b7c2972788231dd9e6
parent7743eeb7ba7aab8c570140a7ef7630763e1bcaa7 (diff)
parent6fc7556681eb815a3d1aa07e51ccf85b1fe16eab (diff)
downloadpelican-themes-cc809c34841e0cb25cde42cff85528b05581e1a1.zip
pelican-themes-cc809c34841e0cb25cde42cff85528b05581e1a1.tar.gz
pelican-themes-cc809c34841e0cb25cde42cff85528b05581e1a1.tar.bz2
Merge pull request #20 from tomatic/patch-1
Added closing anchor tag.
-rw-r--r--bootstrap/templates/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/templates/tags.html b/bootstrap/templates/tags.html
index 592cd0d..a3b37be 100644
--- a/bootstrap/templates/tags.html
+++ b/bootstrap/templates/tags.html
@@ -3,7 +3,7 @@
{% block content %}
<ul>
{% for tag, articles in tags %}
- <li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</li>
+ <li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}