add some headnotes block linking category and tag feeds
diff --git a/templates/index.html b/templates/index.html
index 07ec0c8..1896144 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,21 +1,26 @@
{% extends "base.html" %}
{% block content %}
<header>
- <h3>Index</h3>
+ <h3>
+ Index
+ {% block headnotes %}
+ {% if FEED_ALL_ATOM %}> <a href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}">Full Atom Feed</a>{% endif %}
+ {% endblock headnotes %}
+ </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 %}
+{% 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 %}
<footer>
{% include "pagination.html" %}
</footer>