improves navigation in all pages
diff --git a/templates/archives.html b/templates/archives.html
index 1014cd3..20b6986 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -15,5 +15,6 @@
</div>
</article>
<footer>
+ <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}
diff --git a/templates/categories.html b/templates/categories.html
index 691d3b2..8c13f23 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -14,5 +14,6 @@
</div>
</article>
<footer>
+ <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}
diff --git a/templates/category.html b/templates/category.html
index 1ccb5a5..eddfb26 100644
--- a/templates/category.html
+++ b/templates/category.html
@@ -1,5 +1,5 @@
{% extends "index.html" %}
-{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
+{% block title %}{{ SITENAME }} - Category: {{ category }}{% endblock %}
{% block head %}
{% if CATEGORY_FEED_ATOM %}
<link href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|format(category) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} {{ category }} Category Atom Feed" />
diff --git a/templates/index.html b/templates/index.html
index d639cf2..4615f85 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -4,6 +4,7 @@
<h3>
<a href="{{ SITEURL }}">Index</a>
{% block headnotes %}
+ | <a href="{{ SITEURL }}/archives.html">Archives</a>
{% endblock headnotes %}
</h3>
</header>
diff --git a/templates/tag.html b/templates/tag.html
index 878bde4..dd78008 100644
--- a/templates/tag.html
+++ b/templates/tag.html
@@ -1,5 +1,5 @@
{% extends "index.html" %}
-{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
+{% block title %}{{ SITENAME }} - Tag: {{ tag }}{% endblock %}
{% block head %}
{% if TAG_FEED_ATOM %}
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} {{ tag }} Tag Atom Feed" />
diff --git a/templates/tags.html b/templates/tags.html
index b0b7f79..13eba05 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -14,5 +14,6 @@
</div>
</article>
<footer>
+ <a href="{{ SITEURL }}/" class="button_accent">← Index</a>
</footer>
{% endblock %}