From 3a90e0412a0a1c1c38842b8b813c7b3d982bd0f3 Mon Sep 17 00:00:00 2001 From: David Beniamine <david.beniamine@tetras-libre.fr> Date: Tue, 29 Sep 2020 21:26:16 +0200 Subject: [PATCH] Well balanced footer --- base.twig | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/base.twig b/base.twig index fe55ff2..28e26d3 100644 --- a/base.twig +++ b/base.twig @@ -67,16 +67,18 @@ <div id="footer"> <div class="container"> - <div class="col-md-6 col-sd-12"> - {{ pages["_meta"].meta.bottomline|markdown }} - </div> - <div class="social col-md-6 col-sd-12"> - {% for social in pages["_meta"].meta.social %} - <a href="{{ social.url }}" title="{{ social.title }}" role="button"> - <span class="icon-{{ social.icon }}" aria-hidden="true"></span> - <span >{{ social.title }}</span> - </a> - {% endfor %} + <div class="row"> + <div class="col-md-5 col-sd-12"> + {{ pages["_meta"].meta.bottomline|markdown }} + </div> + <div class="social col-md-7 col-sd-12"> + {% for social in pages["_meta"].meta.social %} + <a href="{{ social.url }}" title="{{ social.title }}" role="button"> + <span class="icon-{{ social.icon }}" aria-hidden="true"></span> + <span >{{ social.title }}</span> + </a> + {% endfor %} + </div> </div> </div> </div> -- GitLab