diff --git a/example-site/templates/archive.html b/example-site/templates/archive.html index 113641a..555bc9f 100644 --- a/example-site/templates/archive.html +++ b/example-site/templates/archive.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Posts Archive{% endblock title %} +{% block title %}Posts Archive :: {% endblock title %} {% block content %}

Posts Archive

diff --git a/example-site/templates/base.html b/example-site/templates/base.html index 8011584..5b8c0b8 100644 --- a/example-site/templates/base.html +++ b/example-site/templates/base.html @@ -2,7 +2,7 @@ - My Site :: {% block title %}{% endblock title %} + {% block title %}{% endblock title %}My Site diff --git a/example-site/templates/latest_post.html b/example-site/templates/latest_post.html index 0d57eec..13e9f83 100644 --- a/example-site/templates/latest_post.html +++ b/example-site/templates/latest_post.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% block title %}{% endblock title %} {% block content %} {% include "partials/post.html" %} {% endblock content %} \ No newline at end of file diff --git a/example-site/templates/page.html b/example-site/templates/page.html index 4b6eaf5..9db6d13 100644 --- a/example-site/templates/page.html +++ b/example-site/templates/page.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ page.title }}{% endblock title %} +{% block title %}{{ page.title }} :: {% endblock title %} {% block content %} {% include "partials/page.html" %} {% endblock content %} \ No newline at end of file diff --git a/example-site/templates/post.html b/example-site/templates/post.html index 1d41653..f668c4f 100644 --- a/example-site/templates/post.html +++ b/example-site/templates/post.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ post.title }}{% endblock title %} +{% block title %}{{ post.title }} :: {% endblock title %} {% block content %} {% include "partials/post.html" %} {% endblock content %} \ No newline at end of file diff --git a/example-site/templates/tag.html b/example-site/templates/tag.html index f2fc46a..bc6ffe1 100644 --- a/example-site/templates/tag.html +++ b/example-site/templates/tag.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Posts With Tag {{ tag }}{% endblock title %} +{% block title %}Posts With Tag {{ tag }} :: {% endblock title %} {% block content %}

Posts With Tag "{{ tag }}"