Change articel and page headers from h3 to h1
diff --git a/templates/article.html b/templates/article.html
index e90eaa8..68b91dc 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -12,7 +12,7 @@
 {% block content %}
 <article>
   <div class="article_title">
-    <h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
+    <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
   </div>
   <div class="article_text">
     {{ article.content }}
diff --git a/templates/index.html b/templates/index.html
index c39682d..e2e2be8 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,7 +3,7 @@
 {% for article in articles_page.object_list %}
 <article>
   <div class="article_title">
-    <h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
+    <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
   </div>
   <div class="article_text">
     {{ article.summary }}
diff --git a/templates/page.html b/templates/page.html
index 3b4db9d..a591bfa 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -8,7 +8,7 @@
 {% block content %}
 <article>
   <div class="article_title">
-    <h3><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h3>
+    <h1><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h1>
   </div>
   <div class="article_text">
     {{ page.content }}