improves article divs naming and static pages formatting
diff --git a/templates/archives.html b/templates/archives.html
index 4030843..1014cd3 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -4,14 +4,16 @@
 <header>
   <h3>Archives</h3>
 </header>
-<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>
+<article>
+  <div id="article_text">
+    <dl>
+      {% for article in dates %}
+      <dt>{{ article.locale_date }}</dt>
+      <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+      {% endfor %}
+    </dl>
+  </div>
+</article>
 <footer>
 </footer>
 {% endblock %}