From f92c61792c506832b30b56e690aa67da1c23870c Mon Sep 17 00:00:00 2001
From: haggis <mail@robert-krautkraemer.de>
Date: Wed, 13 Jan 2016 22:17:25 +0100
Subject: [PATCH] pagination now might work

---
 blog.html | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/blog.html b/blog.html
index da6bd67..6f7d019 100644
--- a/blog.html
+++ b/blog.html
@@ -50,5 +50,13 @@ layout: default
 </script>
 {% endfor %}
 
-<div class="page-navigation">{% if previous_page %}<a href="{{ previous_page_path }}">Zur&uuml;ck</a>{% endif %} | Seite {{ page }} von {{ total pages }} | {% if next_page %}<a href="{{ next_page_path }}">Vor</a>{% endif %}</div>
+<div class="page-navigation">
+	{% if previous_page %}
+	<a href="{{ previous_page_path }}">Zur&uuml;ck</a>
+	{% endif %}
+	 | Seite {{ page }} von {{ total pages }} | 
+	{% if next_page %}
+	<a href="{{ next_page_path }}">Vor</a>
+	{% endif %}
+</div>