diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:39:27 -0700 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:39:27 -0700 |
commit | cc809c34841e0cb25cde42cff85528b05581e1a1 (patch) | |
tree | 61b0caad6e581f233edde0b7c2972788231dd9e6 | |
parent | 7743eeb7ba7aab8c570140a7ef7630763e1bcaa7 (diff) | |
parent | 6fc7556681eb815a3d1aa07e51ccf85b1fe16eab (diff) | |
download | pelican-themes-cc809c34841e0cb25cde42cff85528b05581e1a1.tar.gz |
Merge pull request #20 from tomatic/patch-1
Added closing anchor tag.
-rw-r--r-- | bootstrap/templates/tags.html | 2 |
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 %} |