refonte du footer
Build and Deploy Jekyll / deploy (push) Successful in 42s

This commit is contained in:
2026-05-27 19:40:13 +00:00
parent 00c35a8e89
commit b833aab37d
+39 -8
View File
@@ -1,16 +1,47 @@
<footer class="footer border-top py-2 mt-5 bg-white small"> <footer class="footer border-top py-3 mt-5 bg-white small">
<div class="{% if page.container_class %}{{ page.container_class }}{% else %}container-lg{% endif %}"> <div class="{% if page.container_class %}{{ page.container_class }}{% else %}container-lg{% endif %}">
<div class="row my-3">
<div class="col-6"> {% assign month_num = "now" | date: "%m" %}
<div class="text-muted"> {% assign month_name = site.month_names_fr[month_num] %}
<i>Dernière mise à jour: {{ "now" | date: "%b %Y" }}</i>
<div class="row align-items-center gy-2">
<div class="col-md-4 text-muted">
<i>
Dernière mise à jour :
{{ month_name }} {{ "now" | date: "%Y" }}
</i>
</div> </div>
<div class="col-md-4 text-center text-muted">
© {{ "now" | date: "%Y" }} Aloïs Coquillard
</div> </div>
<div class="col-6">
<div class="text-right text-muted"> <div class="col-md-4 text-md-end text-muted">
<a href="https://git.alocoq.fr/alois/CoqResearch"
class="text-decoration-none text-muted"
target="_blank">
Source du site
</a>
·
<a href="https://git.alocoq.fr/alois"
class="text-decoration-none text-muted"
target="_blank">
Git personnel
</a>
</div>
</div>
{% if site.data.display.footer_text %}
<div class="row mt-2">
<div class="col text-center text-muted">
{{ site.data.display.footer_text }} {{ site.data.display.footer_text }}
</div> </div>
</div> </div>
</div> {% endif %}
</div> </div>
</footer> </footer>