From c5d98e298839a430781e8d7f08ae8dab42478efa Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Tue, 27 Aug 2019 13:38:41 +0200
Subject: [PATCH] FInalise layout of footer columns and add header.

---
 biscuit/core/templates/footer-menu.html | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/biscuit/core/templates/footer-menu.html b/biscuit/core/templates/footer-menu.html
index ed66dde15..f7b3700eb 100644
--- a/biscuit/core/templates/footer-menu.html
+++ b/biscuit/core/templates/footer-menu.html
@@ -7,7 +7,7 @@
 {% for menu in footer_menus %}
  {% if not menu.grouper %}
   {% for item in menu.list %}
-   <div class="col-xs-6 col-sm-3 ">
+   <div class="col">
     <h5>{{ item.name }}</h5>
     <ul class="list-unstyled quick-links">
      {% for menu in item.submenu %}
@@ -21,7 +21,7 @@
 
 {% for menu in footer_menus %}
  {% if menu.grouper %}
-  <div class="col-xs-6 col-sm-3 ">
+  <div class="col">
    <h5>{% blocktrans %}Assorted{% endblocktrans %}</h5>
    <ul class="list-unstyled quick-links">
     {% for item in menu.list %}
@@ -32,6 +32,7 @@
  {% endif %}
 {% endfor %}
 
-<div class="col-xs-6 col-sm-3">
+<div class="col">
+  <h5>{% blocktrans %}Language{% endblocktrans %}</h5>
   {% include 'core/language_form.html' %}
 </div>
-- 
GitLab