25 lines
450 B
HTML
25 lines
450 B
HTML
{# templates/base.html #}
|
|
|
|
{% import "macros.html" as macros %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}{{ title }}{% endblock title %}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
{% include "_navigation.html" %}
|
|
</header>
|
|
{% block content %}
|
|
<h1>Welcome to {{ title }}!</h1>
|
|
{% endblock content %}
|
|
<footer>
|
|
{{ macros.light_or_dark_mode("body") }}
|
|
</footer>
|
|
</body>
|
|
</html>
|