72504804d684ba11d8866dccfe849f657f181d67
[csit.git] / csit.infra.dash / app / cdash / templates / base_layout.jinja2
1 {% extends "layout.jinja2" %}
2
3 {% block content %}
4 <div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
5
6   <header class="mb-auto">
7     <div>
8       <h3 class="float-md-start mb-0 text-white">
9         CSIT-Dash
10       </h3>
11     </div>
12   </header>
13
14   <main class="px-3">
15     <img class="d-block mx-auto mb-4" src="{{ url_for('static', filename='img/logo.svg') }}" alt="" width="72" height="57">
16     <h1 class="text-white">
17       {{ title }}
18     </h1>
19     <p class="lead">
20       {{ description }}
21     </p>
22     <p class="lead">
23       <p>
24         <a href="/trending/" class="btn btn-primary fw-bold w-25">
25           {{ trending_title }}
26         </a>
27       </p>
28       <p>
29         <a href="/report/" class="btn btn-primary fw-bold w-25">
30           {{ report_title }}
31         </a>
32       </p>
33       <p>
34         <a href="/comparisons/" class="btn btn-primary fw-bold w-25">
35           {{ comp_title }}
36         </a>
37       </p>
38       <p>
39       <p>
40         <a href="/coverage/" class="btn btn-primary fw-bold w-25">
41           {{ cov_title }}
42         </a>
43       </p>
44       <p>
45         <a href="/stats/" class="btn btn-primary fw-bold w-25">
46           {{ stats_title }}
47         </a>
48       </p>
49       <p>
50         <a href="/news/" class="btn btn-primary fw-bold w-25">
51           {{ news_title }}
52         </a>
53       </p>
54       <p>
55         <a href="/cdocs/" class="btn btn-primary fw-bold w-25">
56           Documentation
57         </a>
58       </p>
59     </p>
60   </main>
61
62   <footer class="mt-auto text-white-50">
63     <p>Copyright © 2016-2023 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
64   </footer>
65 </div>
66 {% endblock %}