diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-07-09 07:43:09 -0700 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-07-09 07:43:09 -0700 |
commit | 8363d9701c4c5ab794977c37c4428455e68db78b (patch) | |
tree | e1283f119696bd743ba7bca1c520af7d04c10f31 | |
parent | 3ba3e785dc4d84a069622d9138761ff7967c7316 (diff) | |
parent | 57254af0119301478ca18c20dfa59d54de9f1713 (diff) | |
download | pelican-themes-8363d9701c4c5ab794977c37c4428455e68db78b.tar.gz |
Merge pull request #41 from treffynnon/patch-1
Close tags list link tag
-rw-r--r-- | tuxlite_tbs/templates/tags.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_tbs/templates/tags.html b/tuxlite_tbs/templates/tags.html index dea6672..db1c520 100644 --- a/tuxlite_tbs/templates/tags.html +++ b/tuxlite_tbs/templates/tags.html @@ -3,7 +3,7 @@ {% block content %} <ul> {% for tag, articles in tags %} - <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</li> + <li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li> {% endfor %} </ul> {% endblock %} |