aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authortomatic <github@webmailetc.com>2012-03-20 13:45:12 +0100
committertomatic <github@webmailetc.com>2012-03-20 13:45:12 +0100
commitb9019a93de3397b757c4ee2145cb997e0d770a98 (patch)
tree95ef0725ebde2d667e5108640029d0ce04fa0660 /bootstrap
parente38b06c659d60590c0000f2938387d7fa161e2e5 (diff)
downloadpelican-themes-b9019a93de3397b757c4ee2145cb997e0d770a98.zip
pelican-themes-b9019a93de3397b757c4ee2145cb997e0d770a98.tar.gz
pelican-themes-b9019a93de3397b757c4ee2145cb997e0d770a98.tar.bz2
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 %}