<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -21,7 +21,7 @@
 {% endif %}
 
 
-&lt;title&gt;{% block title %}Welcome to {{ lifeflow_blog_name }}{% endblock %}&lt;/title&gt;
+&lt;title&gt;{% block title %}{{ lifeflow_blog_name }}{% endblock %}&lt;/title&gt;
 {% endblock %}
 {% block extra_head %}{% endblock %}
 &lt;/head&gt;</diff>
      <filename>templates/base.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,7 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
+
+{% block title %} Articles @ {{ lifeflow_blog_name }}{% endblock %}
+
 {% block body %}
 &lt;h1&gt; Article Series &lt;/h1&gt;
 &lt;div class=&quot;all-article-series&quot;&gt;</diff>
      <filename>templates/lifeflow/articles.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 {% load markup %}
-{% block title %}{{ object.name|escape }}{% endblock %}
+{% block title %}{{ object.name|escape }} @ {{ lifeflow_blog_name }}{% endblock %}
 {% block body %}
 &lt;h2 class=&quot;author&quot;&gt;&lt;a href=&quot;{{ object.link }}&quot;&gt;{{ object.name }}&lt;/a&gt;&lt;/h2&gt;
 &lt;div class=&quot;author&quot;&gt;</diff>
      <filename>templates/lifeflow/author_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{% block title %} Authors {% endblock %}
+{% block title %} Authors @ {{ lifeflow_blog_name }} {% endblock %}
 {% block body %}
 
 &lt;h3 class=&quot;author-list-heading&quot;&gt; Authors &lt;/h3&gt;</diff>
      <filename>templates/lifeflow/author_list.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %} Archive {% endblock %}
+{% block title %} Archive @ {{ lifeflow_blog_name }}{% endblock %}
 
 
 {% block body %}</diff>
      <filename>templates/lifeflow/entry_archive.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{% block title %}Archive of {{ month|date:&quot;F, Y&quot; }}{% endblock %}
+{% block title %}Archive: {{ month|date:&quot;F, Y&quot; }} @ {{ lifeflow_blog_name }}{% endblock %}
 {% block body %}
 
 &lt;h3&gt; &lt;a href=&quot;../../&quot;&gt;archive&lt;/a&gt; / &lt;a href=&quot;../&quot;&gt;{{ month|date:&quot;Y&quot; }}&lt;/a&gt; / &lt;a href=&quot;./&quot;&gt;{{ month|date:&quot;F&quot; }}&lt;/a&gt; &lt;/h3&gt;</diff>
      <filename>templates/lifeflow/entry_archive_month.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{% block title %}Archive of {{ year }}{% endblock %}
+{% block title %}Archive: {{ year }} @ {{ lifeflow_blog_name }}{% endblock %}
 {% block body %}
 
 </diff>
      <filename>templates/lifeflow/entry_archive_year.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{% block title %}{{ object.title|escape }}{% endblock %}
+{% block title %}{{ object.title|escape }} @ {{ lifeflow_blog_name }}{% endblock %}
 {% block body %}
 &lt;h1&gt;{{ object.title|escape }}&lt;/h1&gt;
 &lt;div class=&quot;article-header&quot;&gt;</diff>
      <filename>templates/lifeflow/entry_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,8 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{%block body %}
 
+{% block title %} {{ object.title }} @ {{ lifeflow_blog_name }} {% endblock %}
+
+{%block body %}
 &lt;div class=&quot;pagination pagination-top&quot;&gt;
 {% if page.has_previous %}
 &lt;span class=&quot;left&quot;&gt;&lt;a href=&quot;?page={{ page.previous_page_number }}&quot;&gt;Newer Entries&lt;/a&gt;&lt;/span&gt;</diff>
      <filename>templates/lifeflow/flow_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %}Translations: {{ object }}{% endblock %}
+{% block title %} {{ object }} @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 </diff>
      <filename>templates/lifeflow/language_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %} Languages {% endblock %}
+{% block title %} Languages @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 </diff>
      <filename>templates/lifeflow/language_list.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
-{% block title %} RSS {% endblock %}
+{% block title %} RSS @ {{ lifeflow_blog_name }}{% endblock %}
 {% block body %}
 &lt;h3&gt; RSS Feeds &lt;/h3&gt;
 </diff>
      <filename>templates/lifeflow/meta_rss.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %}{{ object.title }}{% endblock %}
+{% block title %}{{ object.title }} @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 &lt;a href=&quot;/projects/&quot;&gt;Up to projects&lt;/a&gt;</diff>
      <filename>templates/lifeflow/project_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %} Projects {% endblock %}
+{% block title %} Projects @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 </diff>
      <filename>templates/lifeflow/project_list.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %}{{ object }}{% endblock %}
+{% block title %}{{ object }} @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 </diff>
      <filename>templates/lifeflow/tag_detail.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 {% extends &quot;lifeflow/lifeflow_base.html&quot; %}
 
-{% block title %} Tag Cloud {% endblock %}
+{% block title %} Tag Cloud @ {{ lifeflow_blog_name }}{% endblock %}
 
 {% block body %}
 </diff>
      <filename>templates/lifeflow/tag_list.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>704dd6df898fb8b81c79106cdf07c257f29511b9</id>
    </parent>
  </parents>
  <author>
    <name>Will Larson</name>
    <email>lethain@gmail.com</email>
  </author>
  <url>http://github.com/lethain/lifeflow/commit/1444ecbcae553dce35a5439cf168e446c76a5cbb</url>
  <id>1444ecbcae553dce35a5439cf168e446c76a5cbb</id>
  <committed-date>2008-08-27T10:22:10-07:00</committed-date>
  <authored-date>2008-08-27T10:22:10-07:00</authored-date>
  <message>Updated page titles to include blog name.</message>
  <tree>e3a0260872d04a0eb3dede50b9db30025f6edc32</tree>
  <committer>
    <name>Will Larson</name>
    <email>lethain@gmail.com</email>
  </committer>
</commit>
