compendium/frontend/templates/base.html

26 lines
654 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<link rel="stylesheet" href="../css/style.scss" />
<script type="module" src="htmx.org"></script>
<title>
{% block title %}Axum web service!{% endblock %}
</title>
</head>
<body>
<header>
{% include "partials/header.html" ignore missing %}
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
{% include "partials/footer.html" ignore missing %}
</footer>
</body>
</html>