feat(uti): Refactor styling
[csit.git] / resources / tools / dash / app / pal / templates / base_layout.jinja2
1 <!DOCTYPE html>
2 <html lang="en" class="h-100">
3 <head>
4   <meta charset="utf-8" />
5   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6   <title>{{ title }}</title>
7   <meta property="og:site_name" content="{{ title }}"/>
8   <meta property="og:type" content="website"/>
9   <meta property="og:title" content="{{ title }}"/>
10   <meta property="og:description" content="{{ description }}"/>
11   <meta property="og:url" content="https://csit.fd.io/"/>
12   <meta name="HandheldFriendly" content="True" />
13   <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
14   <!-- Bootstrap core CSS -->
15   <link rel="stylesheet" href="{{ url_for('static', filename='dist/css/bootstrap.min.css') }}" crossorigin="anonymous" />
16   <!-- Favicons -->
17   <link rel="shortcut icon" href="{{ url_for('static', filename='dist/img/favicon.svg') }}" type="image/x-icon" />
18 </head>
19 <body class="{{template}}">
20         {% block content %}{% endblock %}
21 </body>
22 </html>