C-Dash: Prepare layout for telemetry in trending
[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="/stats/" class="btn btn-primary fw-bold w-25">
35           {{ stats_title }}
36         </a>
37       </p>
38       <p>
39         <a href="/news/" class="btn btn-primary fw-bold w-25">
40           {{ news_title }}
41         </a>
42       </p>
43     </p>
44   </main>
45
46   <footer class="mt-auto text-white-50">
47     <p>Copyright © 2016-2022 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
48   </footer>
49 </div>
50 {% endblock %}