34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="{{ site:short_locale }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link
|
|
rel="stylesheet"
|
|
href="/css/bulma.min.css"
|
|
>
|
|
<link rel="stylesheet" href="/css/site.css">
|
|
<title>{{ title ?? site:name }}</title>
|
|
</head>
|
|
<body>
|
|
<nav id="nav" class="navbar is-primaryt is-fixed-top p-5" role="navigation" aria-label="main navigation">
|
|
<div class="navbar-brand">
|
|
<a class="navbar-item squircle" href="/">
|
|
<img src="/assets/logo2.svg" style="height:5rem;"/>
|
|
</a>
|
|
</div>
|
|
<div class="navbar-end">
|
|
<a class="navbar-item button is-rounded has-text-primary" href="{{ hfs:lien_billetterie }}" target="_blank">
|
|
Billetterie
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
{{ template_content }}
|
|
|
|
<footer>Footer</footer>
|
|
</body>
|
|
<script src="/assets/js/main.js"></script>
|
|
</html>
|