From 703ed0f3c6cb8d529cbbca339c627b8ea96ab4cc Mon Sep 17 00:00:00 2001 From: Jake <j.vondoemming@stud.uni-goettingen.de> Date: Mon, 3 Oct 2022 04:25:30 +0200 Subject: [PATCH] updated base.html --- theme/templates/base.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/theme/templates/base.html b/theme/templates/base.html index 07784c4..0c4beb2 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -49,9 +49,9 @@ {% block global_before %} {%- if 'global_before' in config.theme -%} - <section id="globalbefore" class="globalsections"> + <div id="globalbefore" class="globalsections"> {{ render.sections(config.theme.global_before, lang, 2) }} - </section> + </div> {%- endif -%} {% endblock global_before %} @@ -66,9 +66,9 @@ {% block global_after %} {%- if 'global_after' in config.theme -%} - <section id="globalafter" class="globalsections"> + <div id="globalafter" class="globalsections"> {{ render.sections(config.theme.global_after, lang, 2) }} - </section> + </div> {%- endif -%} {% endblock global_after %} -- GitLab