adds support for TAG and CATEGORY feeds
diff --git a/templates/index.html b/templates/index.html
index dcfe708..07ec0c8 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,20 +1,21 @@
 {% extends "base.html" %}
 {% block content %}
-{% set custom_header = "Index" %}
-{% include "header.html" %}
-{% for article in articles_page.object_list %}
-<article>
-  <h1 id="title">
+<header>
+  <h3>Index</h3>
+</header>
+  {% for article in articles_page.object_list %}
+  <article>
+    <h1 id="title">
       <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
-  </h1>
-  <div id="article_content">
-    {{ article.summary }}
-  </div>
-</article>
-{% if not loop.last %}
-<hr />
-{% endif %}
-{% endfor %}
+    </h1>
+    <div id="article_content">
+      {{ article.summary }}
+    </div>
+  </article>
+  {% if not loop.last %}
+  <hr />
+  {% endif %}
+  {% endfor %}
 <footer>
   {% include "pagination.html" %}
 </footer>