Files
sliding-automation/templates/base.html
T

19 lines
577 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="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="/logout">Déconnexion</a></nav>
</header>
<main>{% block content %}{% endblock %}</main>
<div id="busy" class="htmx-indicator">Le NAS travaille…</div>
</body>
</html>