t-r.de/theme/templates/base.html
2025-02-03 16:46:25 +01:00

28 lines
790 B
HTML

<!DOCTYPE html>
<html data-theme="light" lang="{{ DEFAULT_LANG }}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
{% for css in STYLESHEET_FILES %}
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ css }}" />
{% endfor %}
<title>
{% block title %}{{ SITENAME }}{% if SITETAG %} - {{ SITETAG|escape }}{%
endif %}{% endblock %}
</title>
</head>
<body>
<header>
<div id="jumbotron">{% include "includes/jumbotron.html" %}</div>
<nav id="navbar" class="container">{% include "includes/navbar.html" %}</nav>
</header>
<main class="container"></main>
<footer class="container">{% include "includes/footer.html" %}</footer>
</body>
</html>