25 lines
861 B
HTML
25 lines
861 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ @pageTitle ? @pageTitle . ' · ' . @app.name : @app.name }}</title>
|
|
<meta name="description" content="{{ @metaDescription ?: @app.tagline }}">
|
|
<link rel="icon" href="{{ @BASE }}/assets/favicon.svg" type="image/svg+xml">
|
|
<link rel="stylesheet" href="{{ 'asset', 'file=app.css' | alias }}">
|
|
<script defer src="{{ 'asset', 'file=app.js' | alias }}"></script>
|
|
</head>
|
|
<body>
|
|
<include href="partials/site_navigation.html" />
|
|
|
|
<main class="page" id="main-content">
|
|
<div class="container">
|
|
<check if="{{ @flash }}">
|
|
<div class="flash flash--{{ @flash.type }}" role="status">{{ @flash.message }}</div>
|
|
</check>
|
|
<include href="{{ @view }}" />
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|