hlstate-rs/crates/httpd/templates/layout.html.tera
2026-03-05 15:41:15 +02:00

18 lines
No EOL
383 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ title }}</title>
<style>
* {color-scheme: light dark}
</style>
</head>
<body>
<header>
<h1><a href="/">{{ title }}</a></h1>
</header>
<main>
{% block content %}{% endblock content %}
</main>
</body>
</html>