From 0ac11f76a139ff72edb03c613803f18b3e9e0221 Mon Sep 17 00:00:00 2001 From: daudix Date: Tue, 3 Sep 2024 21:55:24 +0300 Subject: [PATCH] Allow overriding the whole page's body --- templates/base.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/base.html b/templates/base.html index 18f47f6..2885aee 100644 --- a/templates/base.html +++ b/templates/base.html @@ -11,6 +11,7 @@ {% include "partials/head.html" %} +{% block body %} {%- if config.extra.nav.links %} {% include "partials/nav.html" %} {%- endif %} @@ -19,5 +20,6 @@ {% block content %}{% endblock %} {% include "partials/footer.html" %} +{% endblock %}