2022-09-26 05:46:56 +00:00
{% import "macros.html" as macros %}
<!doctype html>
< html lang = "fr" >
< head >
< meta charset = "utf-8" / >
< title > {% block title %}{% endblock title %}< / title >
< link rel = "stylesheet" href = "/css/base.css" / >
2023-04-26 09:24:49 +00:00
{% if page.extra.leaflet or section.extra.leaflet %}< link rel = "stylesheet" href = "/vendor/leaflet/leaflet.css" / > {% endif %}
2022-09-26 05:46:56 +00:00
< link rel = "shortcut icon" type = "image/x-icon" href = "/favicon.ico" / >
< meta name = "viewport" content = "width=device-width" / >
2022-09-26 14:19:31 +00:00
< meta name = "robots" content = "noindex,nofollow" / > <!-- TODO remove this for production -->
2022-09-26 05:46:56 +00:00
{% block head %}{% endblock head %}
< / head >
< body >
2022-09-26 14:19:31 +00:00
< div id = "dev-warning" >
< p >
2023-04-15 07:55:10 +00:00
Version de développement. Pour le site officiel actuel, allez sur < a href = "https://librezo.fr" > < b > Librezo.fr< / b > < / a > .
2022-09-26 14:19:31 +00:00
< / p >
< a href = "#" onclick = "document.getElementById('dev-warning').remove()" > fermer< / a >
< / div >
2022-09-26 05:46:56 +00:00
< header >
< a href = "/" > < img id = "header-logo" src = "/img/librezo-little-black.png" alt = "Logo Librezo" aria-hidden / > < h1 class = "sr-only" > Librezo< / h1 > < / a >
< nav id = "header-menu" >
< ul >
2023-03-20 22:04:27 +00:00
< li > < a href = "/fonctionnement" > Fonctionnement< / a > < / li >
< li > < a href = "/tarifs" > Services et tarifs< / a > < / li >
2022-09-26 05:46:56 +00:00
< li > < a href = "/qui-sommes-nous" > Qui sommes-nous< / a > < / li >
< li > < a href = "/charte" > Charte< / a > < / li >
2023-03-20 22:04:27 +00:00
< li > < a href = "/contact" > Contact< / a > < / li >
2022-09-26 05:46:56 +00:00
< / ul >
< / nav >
< / header >
{% block body %}{% endblock body %}
2022-09-26 21:24:15 +00:00
< footer >
< div class = "footer-wrapper" >
< div class = "footer-pane" >
< a href = "/contact" class = "footer-bigger" > Contactez-nous< / a >
< ul >
< li > < a href = "tel:+33782306653" > 07.82.30.66.53< / a > < / li >
2023-03-20 22:04:27 +00:00
< li > < a href = "mailto:contact@librezo.fr" > contact@librezo.fr< / a > < / li >
2023-04-25 14:03:16 +00:00
< li > Rejoignez-nous< / li >
2022-09-26 21:24:15 +00:00
< / ul >
2023-04-25 20:37:09 +00:00
< / div >
< div class = "footer-pane" >
< ul >
< li > < a href = "/mentions-legales" > Mentions légales< / a > < / li >
< li > < a href = "/rgpd" > RGPD< / a > < / li >
< li > SIRET 91009661900028< / li >
< / ul >
2023-04-11 21:26:32 +00:00
< span > < a href = "https://git.txmn.tk/Librezo/website" > Code source du site< / a > sous licence < a href = "http://creativecommons.org/licenses/by-sa/4.0/" target = "_blank" > CC BY-SA 4.0< / a > < / span >
2022-09-26 21:24:15 +00:00
< / div >
< div class = "footer-pane" >
< p >
2023-03-22 23:15:56 +00:00
Librezo propose une alternative aux services en ligne en favorisant l'auto-hébergement. Avec un accompagnement sur mesure et des solutions logicielles libres installées sur votre serveur, reprendre et garder le contrôle de vos données n'a jamais été aussi facile.
2022-09-26 21:24:15 +00:00
< / p >
< / div >
< / div >
< / footer >
2022-09-26 05:46:56 +00:00
< / body >
< / html >