feat(uti): Add statistical graphs
[csit.git] / resources / tools / dash / app / pal / templates / index_layout.jinja2
1 {% extends "base_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">Dashboard</h3>
9     </div>
10   </header>
11
12   <main class="px-3">
13     <img class="d-block mx-auto mb-4" src="{{ url_for('static', filename='img/logo.svg') }}" alt="" width="72" height="57">
14     <h1 class="text-white">{{ title }}</h1>
15     <p class="lead">{{ description }}</p>
16     <p class="lead">
17       <a href="/trending/" class="btn btn-primary fw-bold">Performance Trending</a>
18     </p>
19     <p class="lead">
20       <a href="/report/" class="btn btn-primary fw-bold">Iterative Test Runs</a>
21     </p>
22     <p class="lead">
23       <a href="/stats/" class="btn btn-primary fw-bold">Job Statistics</a>
24     </p>
25   </main>
26
27   <footer class="mt-auto text-white-50">
28     <p>Copyright © 2016-2022 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
29   </footer>
30 </div>
31 {% endblock %}