2024-02-13 14:48:42 +00:00
|
|
|
{# templates/base.html #}
|
|
|
|
|
2024-02-13 16:45:22 +00:00
|
|
|
{% import "macros.html" as macros %}
|
|
|
|
|
2024-02-13 14:48:42 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2024-02-13 15:55:08 +00:00
|
|
|
|
2024-02-13 14:48:42 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2024-02-13 15:30:14 +00:00
|
|
|
<title>{% block title %}{{ title }}{% endblock title %}</title>
|
2024-02-13 14:48:42 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-02-13 15:55:08 +00:00
|
|
|
<header>
|
|
|
|
{% include "_navigation.html" %}
|
|
|
|
</header>
|
2024-02-13 15:30:14 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>Welcome to {{ title }}!</h1>
|
|
|
|
{% endblock content %}
|
2024-02-13 16:45:22 +00:00
|
|
|
<footer>
|
|
|
|
{{ macros.light_or_dark_mode("body") }}
|
|
|
|
</footer>
|
2024-02-13 14:48:42 +00:00
|
|
|
</body>
|
|
|
|
</html>
|