From 27e0151fa1944c3312c2951fbf0ecbb59f8985bb Mon Sep 17 00:00:00 2001 From: Jack Bond-Preston Date: Tue, 14 Feb 2023 01:19:07 +0000 Subject: [PATCH] fix article titles --- templates/article-sw.html | 4 ++++ templates/article.html | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/templates/article-sw.html b/templates/article-sw.html index 6d696ca..ef88d78 100644 --- a/templates/article-sw.html +++ b/templates/article-sw.html @@ -1,5 +1,9 @@ {% extends "base.html" %} +{% block title %} +{{ page.title }} +{% endblock %} + {% block extra_head %} diff --git a/templates/article.html b/templates/article.html index 1eae29f..08ff3a4 100644 --- a/templates/article.html +++ b/templates/article.html @@ -1,5 +1,9 @@ {% extends "base.html" %} +{% block title %} +{{ page.title }} +{% endblock %} + {% block extra_head %} {% endblock %}