feat(uti): Refactor styling
[csit.git] / resources / tools / dash / app / pal / templates / index_layout.jinja2
diff --git a/resources/tools/dash/app/pal/templates/index_layout.jinja2 b/resources/tools/dash/app/pal/templates/index_layout.jinja2
new file mode 100644 (file)
index 0000000..9526c4a
--- /dev/null
@@ -0,0 +1,25 @@
+{% extends "base_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">Dashboard</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>{{ title }}</h1>
+    <p class="lead">{{ description }}</p>
+    <p class="lead">
+      <a href="/trending/" class="btn btn-lg btn-secondary fw-bold">Trending</a>
+    </p>
+  </main>
+
+  <footer class="mt-auto text-white-50">
+    <p>Copyright © 2016-2022 <a href="https://fd.io" class="text-white">The Fast Data Project</a>, a series of LF Projects, LLC.</p>
+  </footer>
+</div>
+{% endblock %}