mirror of
https://github.com/FAUSheppy/flask-json-dream-website
synced 2025-12-06 08:11:35 +01:00
35 lines
784 B
HTML
35 lines
784 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<title>Menschen</title>
|
|
{% include 'head.html' %}
|
|
|
|
</head>
|
|
<body class="bg-special">
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
<div class="container mt-5 mb-5">
|
|
{% for p in people if not p.get("inactive") %}
|
|
<div class="row impressum mt-5">
|
|
<div class="col text-min-dimensions">
|
|
<h2>{{ p["title"] }}</h2>
|
|
<h4>{{ p["subtitle"] }}</h4>
|
|
<p>
|
|
{{ p["text"] }}
|
|
</p>
|
|
</div>
|
|
<div class="col image-min-dimensions">
|
|
<img class="img-responsive w-100 image-max-dimensions"
|
|
realsrc="{{ p['image'] }}" alt="{{ p['title'] }}"></img>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|
|
|
|
</body>
|
|
</html>
|