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 %}
diff --git a/templates/article.html b/templates/article.html
index 8caec40..c2ebab9 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -5,11 +5,11 @@
   <h3>Posted on {{ article.locale_date }}</h3>
 </header>
 <article>
-  <h1 id="title">
+  <h1 id="article_title">
     <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
   </h1>
 
-  <div id="article_content">
+  <div id="article_text">
     {{ article.content }}
   </div>
 
diff --git a/templates/categories.html b/templates/categories.html
index 8c7dcfc..691d3b2 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -4,13 +4,15 @@
 <header>
   <h3>Categories</h3>
 </header>
-<div id="like_article">
-  <ul>
-    {% for category, articles in categories %}
-    <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
-    {% endfor %}
-  </ul>
-</div>
+<article>
+  <div id="article_text">
+    <ul>
+      {% for category, articles in categories %}
+      <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
+      {% endfor %}
+    </ul>
+  </div>
+</article>
 <footer>
 </footer>
 {% endblock %}
diff --git a/templates/index.html b/templates/index.html
index 1896144..a9aa795 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -10,10 +10,10 @@
 </header>
 {% for article in articles_page.object_list %}
 <article>
-  <h1 id="title">
+  <h1 id="article_title">
     <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
   </h1>
-  <div id="article_content">
+  <div id="article_text">
     {{ article.summary }}
   </div>
 </article>
diff --git a/templates/page.html b/templates/page.html
index f3638b8..77c2c8c 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -5,10 +5,12 @@
   <h3>{{ page.title }}</h3>
 </header>
 <article>
-  <h1 id="title">
+  <h1 id="article_title">
     <a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark">{{ page.title }}</a>
   </h1>
-  {{ page.content }}
+  <div id="article_text">
+    {{ page.content }}
+  </div>
 </article>
 <footer>
   <a href="{{ SITEURL }}/" class="button_accent">&larr; Index</a>
diff --git a/templates/tags.html b/templates/tags.html
index 6a42e73..b0b7f79 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -4,13 +4,15 @@
 <header>
   <h3>Tags</h3>
 </header>
-<div id="like_article">
-  <ul>
-    {% for tag in tag_cloud %}
-    <li><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
-    {% endfor %}
-  </ul>
-</div>
+<article>
+  <div id="article_text">
+    <ul>
+      {% for tag in tag_cloud %}
+      <li><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
+      {% endfor %}
+    </ul>
+  </div>
+</article>
 <footer>
 </footer>
 {% endblock %}