khguide/templates/layouts/base.html

19 lines
467 B
HTML
Raw Permalink Normal View History

<!doctype html>
<html lang="en">
<head>
<title>{% block title %}{% endblock %}</title>
2025-01-31 15:40:23 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2025-02-10 00:57:14 +02:00
<style>{% include "components/core/style.css"%} </style>
<script>{% include "components/core/script.js"%} </script>
{% block head %}{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<footer>
<p>v{{ crate::VERSION }}</p>
</footer>
</body>
</html>