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" / >
< 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 >
Version de développement. Pour le site officiel actuel, allez sur < a href = "https://librezo.com" > < b > Librezo.com< / b > < / a > .
< / 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 >
< li > < a href = "/services" > Services et tarifs< / a > < / li >
< li > < a href = "/qui-sommes-nous" > Qui sommes-nous< / a > < / li >
< li > < a href = "/contact" > Contactez-nous< / a > < / li >
< li > < a href = "/charte" > Charte< / a > < / li >
< / 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 = "/services" class = "footer-bigger" > Nos produits & services< / a >
< ul >
< li > < a href = "/matériel" > Installation matérielle< / a > < / li >
< li > < a href = "/logiciel" > Installation et configuration logicielles< / a > < / li >
< li > < a href = "/formation" > Formations< / a > < / li >
< / ul >
< / div >
< 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 >
< li > < a href = "mailto:info@librezo.com" > info@librezo.com< / a > < / li >
< / ul >
< a href = "https://git.txmn.tk/tuxmain/librezo" > Code source du site< / a >
< / div >
< div class = "footer-pane" >
< p >
Librezo propose une alternative aux services en ligne en favorisant l'auto-hébergement. Avec Debian 11 et ses solutions logicielles installées sur votre serveur, reprendre et garder le contrôle de vos données n'a jamais été aussi facile.
< / p >
< / div >
< / div >
< / footer >
2022-09-26 05:46:56 +00:00
< / body >
< / html >