compendium/frontend/templates/base.html

29 lines
821 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 -->
<script src="http://localhost:21012/@vite/client" type="module"></script>
<link href="http://localhost:21012/frontend/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>