fixes article_{title,text,meta} usage from id to class; closes #4
diff --git a/templates/index.html b/templates/index.html
index 635ef08..c39682d 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -2,10 +2,10 @@
 {% block content %}
 {% for article in articles_page.object_list %}
 <article>
-  <div id="article_title">
+  <div class="article_title">
     <h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
   </div>
-  <div id="article_text">
+  <div class="article_text">
     {{ article.summary }}
   </div>
 </article>