fixes article_{title,text,meta} usage from id to class; closes #4
diff --git a/templates/archives.html b/templates/archives.html
index 84828fd..38ac8a8 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -3,7 +3,7 @@
 
 {% block content %}
 <article>
-  <div id="article_text">
+  <div class="article_text">
     <dl>
       {% for article in dates %}
       <dt>{{ article.locale_date }}</dt>
diff --git a/templates/article.html b/templates/article.html
index c49c2b7..e90eaa8 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -11,13 +11,13 @@
 
 {% block content %}
 <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.content }}
   </div>
-  <div id="article_meta">
+  <div class="article_meta">
     <p>Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></p>
     {% if article.tags %}
     <p>Tags:
diff --git a/templates/base.html b/templates/base.html
index c6ff3c3..76a7610 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -84,7 +84,7 @@
     </footer>
 
     <div id="ending_message">
-      <p>&copy {{ AUTHOR }}. Built using <a href="http://getpelican.com" target="_blank">Pelican</a>. Theme by Giulio Fidente on <a href="https://github.com/giulivo/pelican-svbhack" target="_blank">github</a>. {% if INTERNET_DEFENSE_LEAGUE %}Member of the <a href="http://internetdefenseleague.org">Internet Defense League</a>{% endif %}.</p>
+      <p>&copy; {{ AUTHOR }}. Built using <a href="http://getpelican.com" target="_blank">Pelican</a>. Theme by Giulio Fidente on <a href="https://github.com/giulivo/pelican-svbhack" target="_blank">github</a>. {% if INTERNET_DEFENSE_LEAGUE %}Member of the <a href="http://internetdefenseleague.org">Internet Defense League</a>{% endif %}.</p>
     </div>
   </main>
   {% include "modules/idl.html" %}
diff --git a/templates/categories.html b/templates/categories.html
index 60bdf02..7351088 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -3,7 +3,7 @@
 
 {% block content %}
 <article>
-  <div id="article_text">
+  <div class="article_text">
     <ul>
       {% for category, articles in categories %}
       <li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
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>
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>
diff --git a/templates/tags.html b/templates/tags.html
index 12dee12..c49ef3b 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -3,7 +3,7 @@
 
 {% block content %}
 <article>
-  <div id="article_text">
+  <div class="article_text">
     <ul>
       {% for tag in tag_cloud %}
       <li><a href="{{ SITEURL }}/tag/{{ tag.0|string|replace(" ", "-" ) }}.html">{{ tag.0 }}</a></li>