This commit is contained in:
Arne Baeumler 2021-06-05 15:10:58 +02:00
parent d12eae4830
commit 574adf4ac9

View File

@ -9,14 +9,14 @@
{% block head %}<title>Rechentrainer</title>{% endblock %}
</head>
<body>
<header class="w3-container w3-blue-grey">
<header class="w3-container w3-border-bottom w3-border-blue-grey">
{% block header %}<h1><a class="w3-button" href="/"><i class="material-icons w3-xxlarge">home</i></a>Rechentrainer</h1>{% endblock %}
</header>
<div class="w3-container" style="margin-bottom: 1.5em;">
{% block content %}{% endblock %}
</div>
<footer class="w3-container w3-blue-grey w3-center" style="position: fixed; bottom: 0; width: 100vw; height: 1.5em">
{% block footer %}<span>{{ request.base_url }}</span>{% endblock %}
<footer class="w3-container w3-border-top w3-border-blue-grey w3-center" style="position: fixed; bottom: 0; width: 100vw; height: 1.5em">
{% block footer %}<span>{{ request.host }}</span>{% endblock %}
</footer>
</body>
</html>