aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/templates/base_layout.jinja2
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/app/pal/templates/base_layout.jinja2')
-rw-r--r--resources/tools/dash/app/pal/templates/base_layout.jinja222
1 files changed, 22 insertions, 0 deletions
diff --git a/resources/tools/dash/app/pal/templates/base_layout.jinja2 b/resources/tools/dash/app/pal/templates/base_layout.jinja2
new file mode 100644
index 0000000000..09b035ee9e
--- /dev/null
+++ b/resources/tools/dash/app/pal/templates/base_layout.jinja2
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en" class="h-100">
+<head>
+ <meta charset="utf-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <title>{{ title }}</title>
+ <meta property="og:site_name" content="{{ title }}"/>
+ <meta property="og:type" content="website"/>
+ <meta property="og:title" content="{{ title }}"/>
+ <meta property="og:description" content="{{ description }}"/>
+ <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" />
+ <!-- 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" />
+</head>
+<body class="{{template}}">
+ {% block content %}{% endblock %}
+</body>
+</html>