From fbbf722e6d8d4115f36fe6e6f29a97fe12c090c3 Mon Sep 17 00:00:00 2001
From: Eloi Perdereau <eloi@perdereau.eu>
Date: Sat, 23 Nov 2019 00:05:05 +0100
Subject: [PATCH] try adding class="social-icons" to ul in footer

    because footer doesn't show (anymore?) on smartphone
---
 _includes/footer.html | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/_includes/footer.html b/_includes/footer.html
index b24726a..54c10ed 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,21 +1,16 @@
+ul class social-icons
 <div class="page__footer-follow">
-  <div>
-    Luminy.org :
-    <ul>
+    <ul class="social-icons">
     {% for link in site.footer.links %}
       <li>
         <a href="{{ link.url }}/">{{ link.label }}</a>
       </li>
     {% endfor %}
-  </div>
-  <div>
-    Raccourcis :
-    <ul>
+    <ul class="social-icons">
     {% for author in site.data.authors.authors %}
       <li>
         <a href="/{{ author.prefix }}/">{{ author.name }}</a>
       </li>
     {% endfor %}
-  </div>
 </div>
 <div class="page__footer-copyright">&copy; 2002-{{ site.time | date: '%Y' }} {{ site.name | default: site.title }}</div>
-- 
GitLab