feat(uti): Refactor styling
[csit.git] / resources / tools / dash / app / pal / templates / base_layout.jinja2
@@ -1,6 +1,5 @@
 <!DOCTYPE html>
 <!DOCTYPE html>
-<html lang="en">
-
+<html lang="en" class="h-100">
 <head>
   <meta charset="utf-8" />
   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 <head>
   <meta charset="utf-8" />
   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
@@ -9,25 +8,15 @@
   <meta property="og:type" content="website"/>
   <meta property="og:title" content="{{ title }}"/>
   <meta property="og:description" content="{{ description }}"/>
   <meta property="og:type" content="website"/>
   <meta property="og:title" content="{{ title }}"/>
   <meta property="og:description" content="{{ description }}"/>
-  <meta property="og:url" content="https://fd.io/"/>
+  <meta property="og:url" content="https://csit.fd.io/"/>
   <meta name="HandheldFriendly" content="True" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
   <meta name="HandheldFriendly" content="True" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
-  <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
-  <link rel="stylesheet" href="{{ url_for('static', filename='dist/css/styles.css') }}" />
-  <link rel="stylesheet" href="https://use.typekit.net/uqq2lcv.css">
+  <!-- Bootstrap core CSS -->
+  <link rel="stylesheet" href="{{ url_for('static', filename='dist/css/bootstrap.min.css') }}" crossorigin="anonymous" />
+  <!-- Favicons -->
   <link rel="shortcut icon" href="{{ url_for('static', filename='dist/img/favicon.svg') }}" type="image/x-icon" />
   <link rel="shortcut icon" href="{{ url_for('static', filename='dist/img/favicon.svg') }}" type="image/x-icon" />
-  <link
-      rel="stylesheet"
-      href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
-      integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
-      crossorigin="anonymous"
-  />
 </head>
 </head>
-
 <body class="{{template}}">
 <body class="{{template}}">
-  <div class="container">
-         {% block content %}{% endblock %}
-  </div>
+       {% block content %}{% endblock %}
 </body>
 </body>
-
 </html>
 </html>