blob: 97a71e358f281037a1ca2915a968fc52b983c9d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{% extends "layout.jinja2" %}
{% block content %}
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="float-md-start mb-0 text-white">
{{ brand }}
</h3>
</div>
</header>
<main class="px-3">
<img class="d-block mx-auto mb-4" src="{{ url_for('static', filename='img/logo.svg') }}" alt="" width="72" height="57">
<h1 class="text-white">
{{ title }}
</h1>
<p class="lead">
{{ description }}
</p>
<p class="lead">
{% for itm in menu_itms %}
<p>
<a href="{{ itm['path'] }}" class="btn btn-primary fw-bold w-25">
{{ itm['title'] }}
</a>
</p>
{% endfor %}
</p>
</main>
<footer class="mt-auto text-white-50">
<p>Copyright © 2016-2024 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
</footer>
</div>
{% endblock %}
|