fuck_microsoft_access/templates/base.html
2026-01-12 22:19:41 +02:00

17 lines
267 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ self.title() }}</title>
</head>
<body>
{% include "header.html" %}
<main>
{% block content %}{% endblock %}
</main>
{% include "footer.html" %}
</body>
</html>