improves navigation moving links to index on the top header
diff --git a/templates/archives.html b/templates/archives.html
index 20b6986..918d1c6 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -2,7 +2,9 @@
{% block title %}{{ SITENAME }} - Archives{% endblock %}
{% block content %}
<header>
- <h3>Archives</h3>
+ <h3>
+ <a href="{{ SITEURL }}">Index</a> | Archives
+ </h3>
</header>
<article>
<div id="article_text">
@@ -15,6 +17,5 @@
</div>
</article>
<footer>
- <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}
diff --git a/templates/article.html b/templates/article.html
index 51131fe..5886383 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -25,6 +25,6 @@
</div>
</article>
<footer>
- <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
+ <a href="{{ SITEURL }}/" class="button_accent">← Back to Index</a>
</footer>
{% endblock %}
diff --git a/templates/categories.html b/templates/categories.html
index 8c13f23..a8a803d 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -2,7 +2,9 @@
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block content %}
<header>
- <h3>Categories</h3>
+ <h3>
+ <a href="{{ SITEURL }}">Index</a> | Categories
+ </h3>
</header>
<article>
<div id="article_text">
@@ -14,6 +16,5 @@
</div>
</article>
<footer>
- <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}
diff --git a/templates/category.html b/templates/category.html
index 6584a1a..613da88 100644
--- a/templates/category.html
+++ b/templates/category.html
@@ -8,6 +8,6 @@
<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|format(category) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} {{ category }} Category RSS Feed" />
{% endif %}
{% endblock %}
-{% block headnotes %}
-> CATEGORY: {{ category }}
+{% block header %}
+<a href="{{ SITEURL }}">Index</a> | CATEGORY: {{ category }}
{% endblock %}
diff --git a/templates/index.html b/templates/index.html
index b7e9586..c378d3b 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -2,10 +2,9 @@
{% block content %}
<header>
<h3>
- <a href="{{ SITEURL }}">Index</a>
- {% block headnotes %}
- | <a href="{{ SITEURL }}/archives.html">Archives</a>
- {% endblock headnotes %}
+ {% block header %}
+ Index | <a href="{{ SITEURL }}/archives.html">Archives</a>
+ {% endblock header %}
</h3>
</header>
{% for article in articles_page.object_list %}
diff --git a/templates/page.html b/templates/page.html
index de1bf38..8613554 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -13,6 +13,6 @@
</div>
</article>
<footer>
- <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
+ <a href="{{ SITEURL }}/" class="button_accent">← Back to Index</a>
</footer>
{% endblock %}
diff --git a/templates/pagination.html b/templates/pagination.html
index 8b47383..011129e 100644
--- a/templates/pagination.html
+++ b/templates/pagination.html
@@ -2,14 +2,14 @@
<p id="paginator">
{% if articles_page.has_next() %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">← Older</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">← Older Posts</a>
{% endif %}
{% if articles_page.has_previous() %}
{% if articles_page.previous_page_number() == 1 %}
-<a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">Newer →</a>
+<a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">Newer Posts →</a>
{% else %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer →</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer Posts →</a>
{% endif %}
{% endif %}
diff --git a/templates/tag.html b/templates/tag.html
index dd78008..ab7ccb7 100644
--- a/templates/tag.html
+++ b/templates/tag.html
@@ -8,6 +8,6 @@
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS|format(tag) }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} {{ tag }} Tag RSS Feed" />
{% endif %}
{% endblock %}
-{% block headnotes %}
-> TAG: {{ tag }}
+{% block header %}
+<a href="{{ SITEURL }}">Index</a> | TAG: {{ tag }}
{% endblock %}
diff --git a/templates/tags.html b/templates/tags.html
index 13eba05..8965515 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -2,7 +2,9 @@
{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block content %}
<header>
- <h3>Tags</h3>
+ <h3>
+ <a href="{{ SITEURL }}">Index</a> | Tags
+ </h3>
</header>
<article>
<div id="article_text">
@@ -14,6 +16,5 @@
</div>
</article>
<footer>
- <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}