From 05cbf1fed59f36fc3f8b20f1a20305056e5826a8 Mon Sep 17 00:00:00 2001
From: Patrick Jentsch <p.jentsch@uni-bielefeld.de>
Date: Thu, 4 Jul 2019 12:23:09 +0200
Subject: [PATCH] Add row structure to base template

---
 app/templates/base.html.j2 | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2
index 94ad47ea..f206446c 100644
--- a/app/templates/base.html.j2
+++ b/app/templates/base.html.j2
@@ -18,8 +18,14 @@
   <body>
     {% include 'sidenav.html.j2' %}
 
-    {% block page_content %}
-    {% endblock %}
+    <main>
+      <div class="container">
+        <div class="row">
+          {% block page_content %}
+          {% endblock %}
+        </div>
+      </div>
+    </main>
 
     <!--JavaScript at end of body for optimized loading-->
     <script type="text/javascript" src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
-- 
GitLab