summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBotond Hende <contact@wazul.moe>2026-05-01 12:47:30 +0200
committerBotond Hende <contact@wazul.moe>2026-05-01 12:47:30 +0200
commit41ebb83adbb462c28ba1d686a80f273265987971 (patch)
treee39114afaf744552592fd150549051be39a7b306
parentdb2f67bdd0902048a5d3faa9fe46a71c4aaa4bb3 (diff)
renamed blog base template
-rw-r--r--blog/templates/acknowledgement.html.j22
-rw-r--r--blog/templates/blog_base.html.j2 (renamed from blog/templates/base.html.j2)0
-rw-r--r--blog/templates/blogpost.html.j22
-rw-r--r--blog/templates/blogpost_sub.html.j22
-rw-r--r--blog/templates/index.html.j22
-rw-r--r--blog/templates/tag.html.j22
-rw-r--r--blog/templates/tags.html.j22
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 %}