diff options
author | tomatic <github@webmailetc.com> | 2012-03-20 13:45:12 +0100 |
---|---|---|
committer | tomatic <github@webmailetc.com> | 2012-03-20 13:45:12 +0100 |
commit | b9019a93de3397b757c4ee2145cb997e0d770a98 (patch) | |
tree | 95ef0725ebde2d667e5108640029d0ce04fa0660 | |
parent | e38b06c659d60590c0000f2938387d7fa161e2e5 (diff) | |
download | pelican-themes-b9019a93de3397b757c4ee2145cb997e0d770a98.tar.gz |
Added missing closing anchor tag.
-rw-r--r-- | bootstrap/templates/categories.html | 2 |
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 %} |