compendium/frontend/templates/base.html

29 lines
748 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="dark light" name="color-scheme">
<!-- if development -->
{{ load_vite_script() | safe }}
<link href="/assets/css/style.scss" rel="stylesheet"/>
<script src="/assets/js/index.ts" type="module"></script>
<script src="htmx.org" type="module"></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>