improves paginator and tags/categories/archives listing layout
diff --git a/templates/categories.html b/templates/categories.html
index c30153d..edda5fa 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -3,11 +3,13 @@
{% block content %}
{% set custom_header = "Categories" %}
{% include "header.html" %}
-<dl>
+<div id="like_article">
<ul>
{% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
-</dl>
+</div>
+<footer>
+</footer>
{% endblock %}