fuck_microsoft_access/templates/base.html
2026-01-12 16:57:57 -05:00

18 lines
320 B
HTML

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