compendium/frontend/templates/base.html

31 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="@mini-strap/core" />
<link rel="stylesheet" href="@mini-strap/components/offcanvas/style.scss" />
<link rel="stylesheet"
href="@mini-strap/components/accordion/accordion.scss" />
<link rel="stylesheet" href="@mini-strap/components/navbar/navbar.scss" />
<link rel="stylesheet" href="../css/style.scss" />
<script type="module" src="htmx.org"></script>
<script type="module" src="@mini-strap/components/offcanvas/index.ts"></script>
<title>
{% block title %}Axum web service!{% endblock %}
</title>
</head>
<body>
<header>
{% include "partials/header.html" %}
</header>
<main class="msp-container">
<nav class="msp-d-sm-none msp-d-flex msp-justify-content-end">
<button class="msp-offcanvas-toggle" data-msp-target="#main-offcanvas">Toggle</button>
</nav>
{% block content %}{% endblock %}
</main>
</body>
</html>