diff --git a/pelican/themes/templates/archives.html b/pelican/themes/templates/archives.html
index f2f6270b..9414f5be 100644
--- a/pelican/themes/templates/archives.html
+++ b/pelican/themes/templates/archives.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block content %}
-
Archives for {{ BLOGNAME }}
+Archives for {{ SITENAME }}
{% for date, articles in dates %}
diff --git a/pelican/themes/templates/base.html b/pelican/themes/templates/base.html
index 3bf37391..26103864 100644
--- a/pelican/themes/templates/base.html
+++ b/pelican/themes/templates/base.html
@@ -1,13 +1,13 @@
- {% block title %}{{ BLOGNAME }}{%endblock%}
+ {% block title %}{{ SITENAME }}{%endblock%}
{% if categories %}
{% for category, articles in categories %}
diff --git a/samples/themes/notmyidea/templates/archives.html b/samples/themes/notmyidea/templates/archives.html
index d99aad6d..31b02a0d 100644
--- a/samples/themes/notmyidea/templates/archives.html
+++ b/samples/themes/notmyidea/templates/archives.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block content %}
-Archives for {{ BLOGNAME }}
+Archives for {{ SITENAME }}
{% for date, articles in dates %}
diff --git a/samples/themes/notmyidea/templates/article.html b/samples/themes/notmyidea/templates/article.html
index e3624730..4aed28f4 100644
--- a/samples/themes/notmyidea/templates/article.html
+++ b/samples/themes/notmyidea/templates/article.html
@@ -11,7 +11,7 @@
By {{ article.author }}
- In {{ article.category }}
+ In {{ article.category }}
{{ article.content }}
diff --git a/samples/themes/notmyidea/templates/base.html b/samples/themes/notmyidea/templates/base.html
index 245c4f6a..a9572db8 100644
--- a/samples/themes/notmyidea/templates/base.html
+++ b/samples/themes/notmyidea/templates/base.html
@@ -1,21 +1,21 @@
- {% block title %}{{ BLOGNAME }}{%endblock%}
+ {% block title %}{{ SITENAME }}{%endblock%}
-
-
+
+
+
+
+
@@ -23,24 +23,24 @@
{% block content %}
{% endblock %}
- {% if BLOGROLL %}
+ {% if SITEROLL %}
blogroll
- {% for name, link in BLOGROLL %}
+ {% for name, link in SITEROLL %}
- {{ name }}
{% endfor %}
@@ -50,7 +50,7 @@
social
- - atom feed
+ - atom feed
{% for name, link in SOCIAL %}
- {{ name }}
{% endfor %}
diff --git a/samples/themes/notmyidea/templates/index.html b/samples/themes/notmyidea/templates/index.html
index 7c1f5bf5..3ee1edb1 100644
--- a/samples/themes/notmyidea/templates/index.html
+++ b/samples/themes/notmyidea/templates/index.html
@@ -4,7 +4,7 @@
{% for article in articles %}
{% if loop.index == 1 %}
@@ -25,7 +25,7 @@
{% else %}
-
{% endif %}