mirror of
https://git.librezo.fr/Librezo/website.git
synced 2025-09-04 11:58:28 +02:00
Initial commit
This commit is contained in:
26
templates/base.html
Normal file
26
templates/base.html
Normal file
@ -0,0 +1,26 @@
|
||||
{% 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>
|
Reference in New Issue
Block a user