feat(uti): Dash demo
[csit.git] / resources / tools / dash / app / pal / templates / layout.jinja2
1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5   <meta charset="utf-8" />
6   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
7   <title>{{ title }}</title>
8   <meta property="og:site_name" content="{{ title }}"/>
9   <meta property="og:type" content="website"/>
10   <meta property="og:title" content="{{ title }}"/>
11   <meta property="og:description" content="{{ description }}"/>
12   <meta property="og:url" content="https://fd.io/"/>
13   <meta name="HandheldFriendly" content="True" />
14   <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
15   <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
16   <link rel="stylesheet" href="{{ url_for('static', filename='dist/css/styles.css') }}" />
17   <link rel="stylesheet" href="https://use.typekit.net/uqq2lcv.css">
18   <link rel="shortcut icon" href="{{ url_for('static', filename='dist/img/favicon.svg') }}" type="image/x-icon" />
19   <link
20       rel="stylesheet"
21       href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
22       integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
23       crossorigin="anonymous"
24   />
25 </head>
26
27 <body class="{{template}}">
28   <div class="container">
29           {% block content %}{% endblock %}
30   </div>
31 </body>
32
33 </html>