-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
32 lines (24 loc) · 975 Bytes
/
layout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<title>{{ .Page.Title }}</title>
<link rel="icon" type="image/png" href="/static/favicon.ico?v=1" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Detailed CustomResourceDefinitions (CRDs) reference documentation for the Stackable Data Platform." />
<link rel="stylesheet" href="/static/css/root.css">
</head>
<body data-dm-shortcut-enabled="true" data-sidebar-shortcut-enabled="true">
<div class="page-wrapper {{if not .Page.DisableNavBar}}with-navbar{{end}}">
<div class="sticky-alerts"></div>
{{ if not .Page.DisableNavBar }}
{{ template "_navbar" . }}
{{ end }}
<div class="content-wrapper">
{{ yield }}
{{ template "_footer" . }}
</div>
</div>
</body>
</html>