fixes article_{title,text,meta} usage from id to class; closes #4
diff --git a/templates/page.html b/templates/page.html
index d2fd6c4..3b4db9d 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -7,10 +7,10 @@
 
 {% block content %}
 <article>
-  <div id="article_title">
+  <div class="article_title">
     <h3><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h3>
   </div>
-  <div id="article_text">
+  <div class="article_text">
     {{ page.content }}
   </div>
 </article>