blob: 72504804d684ba11d8866dccfe849f657f181d67 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{% 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">
CSIT-Dash
</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">
<p>
<a href="/trending/" class="btn btn-primary fw-bold w-25">
{{ trending_title }}
</a>
</p>
<p>
<a href="/report/" class="btn btn-primary fw-bold w-25">
{{ report_title }}
</a>
</p>
<p>
<a href="/comparisons/" class="btn btn-primary fw-bold w-25">
{{ comp_title }}
</a>
</p>
<p>
<p>
<a href="/coverage/" class="btn btn-primary fw-bold w-25">
{{ cov_title }}
</a>
</p>
<p>
<a href="/stats/" class="btn btn-primary fw-bold w-25">
{{ stats_title }}
</a>
</p>
<p>
<a href="/news/" class="btn btn-primary fw-bold w-25">
{{ news_title }}
</a>
</p>
<p>
<a href="/cdocs/" class="btn btn-primary fw-bold w-25">
Documentation
</a>
</p>
</p>
</main>
<footer class="mt-auto text-white-50">
<p>Copyright © 2016-2023 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
</footer>
</div>
{% endblock %}
|