diff options
| -rw-r--r-- | blog/templates/acknowledgement.html.j2 | 2 | ||||
| -rw-r--r-- | blog/templates/blog_base.html.j2 (renamed from blog/templates/base.html.j2) | 0 | ||||
| -rw-r--r-- | blog/templates/blogpost.html.j2 | 2 | ||||
| -rw-r--r-- | blog/templates/blogpost_sub.html.j2 | 2 | ||||
| -rw-r--r-- | blog/templates/index.html.j2 | 2 | ||||
| -rw-r--r-- | blog/templates/tag.html.j2 | 2 | ||||
| -rw-r--r-- | blog/templates/tags.html.j2 | 2 |
7 files changed, 6 insertions, 6 deletions
diff --git a/blog/templates/acknowledgement.html.j2 b/blog/templates/acknowledgement.html.j2 index 2c11f76..e12ea6f 100644 --- a/blog/templates/acknowledgement.html.j2 +++ b/blog/templates/acknowledgement.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block page_title %}Acknowledgement {{ super() }}{% endblock %} {% block page_title_short %}Acknowledgement{% endblock %} {% block content %} diff --git a/blog/templates/base.html.j2 b/blog/templates/blog_base.html.j2 index 6c5845a..6c5845a 100644 --- a/blog/templates/base.html.j2 +++ b/blog/templates/blog_base.html.j2 diff --git a/blog/templates/blogpost.html.j2 b/blog/templates/blogpost.html.j2 index 40dc7de..0a09558 100644 --- a/blog/templates/blogpost.html.j2 +++ b/blog/templates/blogpost.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block page_title %}{{ post.title() }} {{ super() }}{% endblock %} {% block page_title_short %}{{ post.title() }}{% endblock %} {% block content %} diff --git a/blog/templates/blogpost_sub.html.j2 b/blog/templates/blogpost_sub.html.j2 index 5bf4d94..bc1c2b8 100644 --- a/blog/templates/blogpost_sub.html.j2 +++ b/blog/templates/blogpost_sub.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block page_title %}{{ post.title() }} {{ super() }}{% endblock %} {% block page_title_short %}{{ post.title() }}{% endblock %} {% block content %} diff --git a/blog/templates/index.html.j2 b/blog/templates/index.html.j2 index b3ed4e5..0047097 100644 --- a/blog/templates/index.html.j2 +++ b/blog/templates/index.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block content %} {% for post in posts %} {% if loop.first %} diff --git a/blog/templates/tag.html.j2 b/blog/templates/tag.html.j2 index 093f41b..951f233 100644 --- a/blog/templates/tag.html.j2 +++ b/blog/templates/tag.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block page_title %}tags/{{ tag }} {{ super() }}{% endblock %} {% block page_title_short %}tags/{{ tag }}{% endblock %} {% block content %} diff --git a/blog/templates/tags.html.j2 b/blog/templates/tags.html.j2 index 8812559..ea4774a 100644 --- a/blog/templates/tags.html.j2 +++ b/blog/templates/tags.html.j2 @@ -1,4 +1,4 @@ -{% extends "base.html.j2" %} +{% extends "blog_base.html.j2" %} {% block page_title %}tags/ {{ super() }}{% endblock %} {% block page_title_short %}tags/{% endblock %} {% block content %} |
