20 lines
708 B
HTML
20 lines
708 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sliding — {% block title %}{% endblock %}</title>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a class="brand" href="/">SLIDING <span>· Pernod Ricard</span></a>
|
|
<nav><a href="/layouts" target="_blank">Catalogue des layouts</a> · <a href="/logout">Déconnexion</a></nav>
|
|
</header>
|
|
<main>{% block content %}{% endblock %}</main>
|
|
<div id="busy" class="htmx-indicator">L'agent travaille…</div>
|
|
</body>
|
|
</html>
|