From 6324579b36fcd59918c546f23dc412e58b36253b Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 22 May 2024 18:00:33 +0200 Subject: [PATCH] refactor: improve HTML formatting in base template Adjusted the formatting in the base.html template for better readability and consistency. This includes changes to indentation, the self-closing of meta tags, and the simplification of the main block. These adjustments make the code cleaner and more in line with modern HTML practices, potentially easing future maintenance and readability. --- templates/base.html | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/templates/base.html b/templates/base.html index 5a2d6ce..93f4e76 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,22 +1,27 @@ - - - - + + + {% if title %}{{ title }} - {% endif %}Structables - - - - + + + + - + {% include "header.html" %} -
- {% block content %} - {% endblock %} -
+
{% block content %} {% endblock %}
{% include "footer.html" %} - - - \ No newline at end of file + +