aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:16 -0700
committerAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:16 -0700
commit7743eeb7ba7aab8c570140a7ef7630763e1bcaa7 (patch)
tree91f2cbc374c44a61852039c0cb7bcc9f7236b70b /bootstrap
parent421f27905d3f3c11d56c0ac1ae34ef6c34765d37 (diff)
parentb9019a93de3397b757c4ee2145cb997e0d770a98 (diff)
downloadpelican-themes-7743eeb7ba7aab8c570140a7ef7630763e1bcaa7.zip
pelican-themes-7743eeb7ba7aab8c570140a7ef7630763e1bcaa7.tar.gz
pelican-themes-7743eeb7ba7aab8c570140a7ef7630763e1bcaa7.tar.bz2
Merge pull request #22 from tomatic/patch-3
Added missing closing anchor tag.
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/templates/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html
index 36b57bc..4500237 100644
--- a/bootstrap/templates/categories.html
+++ b/bootstrap/templates/categories.html
@@ -3,7 +3,7 @@
{% block content %}
<ul>
{% for category, articles in categories %}
- <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</li>
+ <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}