From 13c0ec06ca5c3a52f90682499d7860b1b7ff6421 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 16 Nov 2021 11:54:24 -0500 Subject: [PATCH] much more meta stuff --- templates/base.html | 6 ++++-- templates/index.html | 2 +- templates/page.html | 7 +++++++ templates/section.html | 5 +++++ 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/templates/base.html b/templates/base.html index e13951d..12d2b4f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -23,8 +23,10 @@ - - + + + + {% endblock head %} diff --git a/templates/index.html b/templates/index.html index 3004abb..68464e2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,7 +7,7 @@ {{ super() }} - + {% endblock head %} {% block content %} diff --git a/templates/page.html b/templates/page.html index 7e31160..6a62f84 100644 --- a/templates/page.html +++ b/templates/page.html @@ -16,6 +16,13 @@ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMath: [ ['$$','$$'], ['\[','\]'] ]}}); {% endif %} + + + +{% if page.description %} + +{% endif %} + {% endblock head %} {% block profile %} diff --git a/templates/section.html b/templates/section.html index 7d61741..5f97a2b 100644 --- a/templates/section.html +++ b/templates/section.html @@ -3,6 +3,11 @@ {{section.title}} {% endblock title %} +{% block head %} +{{ super() }} + +{% endblock head %} + {% block content %} {{section.content | safe}}