improves navigation moving links to index on the top header
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">&larr; Older</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html" class="button_accent">&larr; 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 &rarr;</a>
+<a href="{{ SITEURL }}/{{ page_name }}.html" class="button_accent">Newer Posts &rarr;</a>
 {% else %}
-<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer &rarr;</a>
+<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html" class="button_accent">Newer Posts &rarr;</a>
 {% endif %}
 {% endif %}