From c9d314827d85ae64e1c676859009d145279dc074 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Fri, 3 Feb 2023 16:46:40 -0500 Subject: [PATCH] replace super() with page.description --- templates/page.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/page.html b/templates/page.html index c6d8610..ef43e66 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,7 +1,7 @@ {% import "_macros.html" as macros %} {% extends "index.html" %} -{% block title %}{{ page.title }} | {{ super() }} {% endblock title %} +{% block title %}{{ page.title }} | {{ page.description }} {% endblock title %} {% block header %}
@@ -12,4 +12,4 @@ {% block content %}
{{ page.description }}
{{ page.content | safe }} -{% endblock content %} \ No newline at end of file +{% endblock content %}