fixes incorrect links to tag's page from tag_cloud listing
diff --git a/templates/page.html b/templates/page.html
index a2945ed..ffd4686 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,7 +1,8 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
+
{% block header %}
-{{ page.title }
+<p>{{ page.title }</p>
{% endblock %}
{% block content %}
@@ -16,5 +17,5 @@
{% endblock %}
{% block footer %}
-<a href="{{ SITEURL }}/" class="button_accent">← Back to Index</a>
+<p><a href="{{ SITEURL }}/" class="button_accent">← Back to Index</a></p>
{% endblock %}