improves paginator and tags/categories/archives listing layout
diff --git a/templates/archives.html b/templates/archives.html
index a23994b..3417046 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -3,10 +3,14 @@
 {% block content %}
 {% set custom_header = "Archives" %}
 {% include "header.html" %}
-<dl>
-{% for article in dates %}
-  <dt>{{ article.locale_date }}</dt>
-  <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
-{% endfor %}
-</dl>
+<div id="like_article">
+  <dl>
+  {% for article in dates %}
+    <dt>{{ article.locale_date }}</dt>
+    <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+  {% endfor %}
+  </dl>
+</div>
+<footer>
+</footer>
 {% endblock %}
diff --git a/templates/article.html b/templates/article.html
index 6abe2e6..c1bea9b 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -16,7 +16,7 @@
     {% if article.tags %}
     Tags:
     {% for tag in article.tags %}
-      <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+      <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
     {% endfor %}
     {% endif %}
   </div>
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 %}
diff --git a/templates/index.html b/templates/index.html
index 910170c..dcfe708 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -11,6 +11,9 @@
     {{ article.summary }}
   </div>
 </article>
+{% if not loop.last %}
+<hr />
+{% endif %}
 {% endfor %}
 <footer>
   {% include "pagination.html" %}
diff --git a/templates/page.html b/templates/page.html
index e0e9993..d32a9b1 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -9,7 +9,6 @@
   </h1>
   {{ page.content }}
 </article>
-
 <footer>
   <a href="{{ SITEURL }}/" class="button_accent">&larr;Back to blog</a>
 </footer>
diff --git a/templates/pagination.html b/templates/pagination.html
index c34d17f..66757b2 100644
--- a/templates/pagination.html
+++ b/templates/pagination.html
@@ -1,5 +1,5 @@
 {% if DEFAULT_PAGINATION %}
-<p class="paginator">
+<p id="paginator">
 {% if articles_page.has_previous() %}
 {% if articles_page.previous_page_number() == 1 %}
 <a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">&larr;newer</a>
@@ -8,7 +8,7 @@
 {% endif %}
 {% endif %}
 {% if articles_page.has_next() %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent" style="position: absolute; right: 0;">continue&rarr;</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">older&rarr;</a>
 {% endif %}
 </p>
 {% endif %}
diff --git a/templates/tags.html b/templates/tags.html
index 8a89c81..93f7062 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -3,11 +3,13 @@
 {% block content %}
 {% set custom_header = "Tags" %}
 {% include "header.html" %}
-<dl>
+<div id="like_article">
   <ul>
   {% for tag in tag_cloud %}
     <li><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
   {% endfor %}
   </ul>
-</dl>
+</div>
+<footer>
+</footer>
 {% endblock %}