mirror of
https://github.com/FAUSheppy/flask-json-dream-website
synced 2025-12-06 00:01:36 +01:00
24 lines
420 B
HTML
24 lines
420 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
{% include 'head.html' %}
|
|
<title>Stammtisch</title>
|
|
|
|
</head>
|
|
<body class="h-100 bg-special">
|
|
|
|
{% include 'navbar.html' %}
|
|
<div class="container mt-5 mb-5 h-100">
|
|
<div class="row impressum mt-5"></div>
|
|
<div class="col-lg-12">
|
|
{% include 'stammtisch_text.html' %}
|
|
<div class="pb-3"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
|
|
</body>
|
|
</html>
|