27 lines
875 B
HTML
27 lines
875 B
HTML
|
{% 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"/>
|
||
|
{% block head %}{% endblock head %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<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 %}
|
||
|
</body>
|
||
|
</html>
|