From d04d8b79638e30983820db18c9b28e11ed29634c Mon Sep 17 00:00:00 2001 From: David Beniamine <david.beniamine@tetras-libre.fr> Date: Tue, 29 Sep 2020 21:21:27 +0200 Subject: [PATCH] Fix footer --- base.twig | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/base.twig b/base.twig index fd09894..fe55ff2 100644 --- a/base.twig +++ b/base.twig @@ -67,15 +67,15 @@ <div id="footer"> <div class="container"> - <p> - {{ pages["_meta"].meta.bottomline|markdown }} - </p> - <div class="social"> + <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> + <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> -- GitLab