From 92da3ec20cfdd87775d10d013b77bfa13372f2fd Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Sun, 11 Jun 2023 16:00:26 +0200
Subject: [PATCH] Add main part

---
 templates/base.html  | 4 ++++
 templates/index.html | 3 +++
 2 files changed, 7 insertions(+)

diff --git a/templates/base.html b/templates/base.html
index f6ac586b..187865e3 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -56,5 +56,9 @@
                 </div>
             </nav>
         </header>
+
+        <main>
+            {% block main %}{% endblock %}
+        </main>
     </body>
 </html>
diff --git a/templates/index.html b/templates/index.html
index 94d9808c..a9c0401f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1 +1,4 @@
 {% extends "base.html" %}
+
+{% block main %}
+{% endblock %}
-- 
GitLab