From d0dde89ab2c1055572daae5aaec8f3ae4217eb6f Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 15 Jul 2024 17:30:41 +0200 Subject: [PATCH] fix(template): close extra div in navbar Added a missing closing `div` tag in the navbar section of the base template to ensure proper HTML structure. This prevents potential rendering issues and maintains consistent layout across all pages using this template. --- templates/base.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/base.html b/templates/base.html index d2f7311..8e6233f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -50,6 +50,7 @@ JOIN & SUPPORT + {% if warning %}{{ warning|safe }}{% endif %} {% block content %}{% endblock %}