Added sitename after page titles
diff --git a/templates/archives.html b/templates/archives.html
index ee2fff8..27ddf6f 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Archives{% endblock %}
+{% block title %}Archive | {{ SITENAME }}{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
diff --git a/templates/article.html b/templates/article.html
index fd662db..bae03bf 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -3,7 +3,7 @@
<meta name="keywords" content="{{ article.tags|join(', ') }}">
{% endblock %}
-{% block title %}{{ article.title }}{% endblock %}
+{% block title %}{{ article.title }} | {{ SITENAME }}{% endblock %}
{% block subheader %}
<p>Posted
diff --git a/templates/author.html b/templates/author.html
index 855af33..c2decd3 100644
--- a/templates/author.html
+++ b/templates/author.html
@@ -1,5 +1,5 @@
{% extends "index.html" %}
-{% block title %}Author: {{ author }}{% endblock %}
+{% block title %}Author: {{ author }} | {{ SITENAME }}{% endblock %}
{% block subheader %}
<p>Author: {{ author }}</p>
diff --git a/templates/authors.html b/templates/authors.html
index 75192e2..31141ae 100644
--- a/templates/authors.html
+++ b/templates/authors.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}{{ SITENAME }} - Authors{% endblock %}
+{% block title %}Authors | {{ SITENAME }}{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
diff --git a/templates/categories.html b/templates/categories.html
index 7c6be9f..34deba2 100644
--- a/templates/categories.html
+++ b/templates/categories.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Categories{% endblock %}
+{% block title %}Categories | {{ SITENAME }}{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}
diff --git a/templates/category.html b/templates/category.html
index ffb949d..a3b4dc1 100644
--- a/templates/category.html
+++ b/templates/category.html
@@ -1,5 +1,5 @@
{% extends "index.html" %}
-{% block title %}Category: {{ category }}{% endblock %}
+{% block title %}Category: {{ category }} | {{ SITENAME }}{% endblock %}
{% block head %}
{% if CATEGORY_FEED_ATOM %}
diff --git a/templates/index.html b/templates/index.html
index bf0e5d3..e2da6ee 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,5 +1,7 @@
{% extends "base.html" %}
+{% block title %}Blog | {{ SITENAME }}{% endblock %}
+
{% block subheader %}
{% include "modules/blogsubheader.html" %}
{% endblock subheader %}
diff --git a/templates/page.html b/templates/page.html
index fe8b24f..4c51299 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}{{ page.title }}{% endblock %}
+{% block title %}{{ page.title }} | {{ SITENAME }}{% endblock %}
{% block content %}
<article>
diff --git a/templates/tag.html b/templates/tag.html
index 624284b..2c5b49c 100644
--- a/templates/tag.html
+++ b/templates/tag.html
@@ -1,5 +1,5 @@
{% extends "index.html" %}
-{% block title %}Tag: {{ tag }}{% endblock %}
+{% block title %}Tag: {{ tag }} | {{ SITENAME }}{% endblock %}
{% block head %}
{% if TAG_FEED_ATOM %}
diff --git a/templates/tags.html b/templates/tags.html
index fc814b8..fd3320a 100644
--- a/templates/tags.html
+++ b/templates/tags.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Tags{% endblock %}
+{% block title %}Tags | {{ SITENAME }}{% endblock %}
{% block subheader %}
{% include "modules/blogsubheader.html" %}