-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbaseof.html
More file actions
50 lines (49 loc) · 2.03 KB
/
baseof.html
File metadata and controls
50 lines (49 loc) · 2.03 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{{/* (C) 2023 GoodData Corporation */}}
{{ $pageLang := cond (isset .Page.Params "lang") (default "en" (index (split .Page.Params.lang "_") 0)) .Site.Language.Lang }}
<!doctype html>
<html lang="{{ $pageLang }}" class="no-js">
<head>
{{ partial "head.html" . }}
{{ partial "meta-version.html" . }}
{{ if .Params.externalLink }}
<meta http-equiv="refresh" content="0;url={{ .Params.externalLink }}" />
{{ end }}
</head>
<body class="td-{{ .Kind }}{{ if .Page.Params.edition }} doc{{ .Page.Params.edition }}{{ end }}{{ if .Page.Params.type }} {{ .Page.Params.type }}{{ end }}" id="top">
{{ partial "gtm-body.html" }}
{{ partial "skip-links.html" . }}
<header aria-label="Main site header">
{{ partial "navbar.html" . }}
</header>
<div class="container-fluid td-outer">
<div class="td-main">
<div class="gd-docs-header-nav__mobile">
{{ partial "navbar-breadcrumb.html" . }}
</div>
<div class="row flex-xl-nowrap">
<div class="col-12 col-lg-4 col-xl-3 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</div>
<main class="col-12 col-lg-8 col-xl-7 pl-lg-5 ps-lg-5" role="main" id="main-content" aria-label="Article content">
{{ partial "version-banner.html" . }}
{{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }}
{{ if .Draft }}
<div class="alert alert-warning" role="alert">
<h1>DRAFT</h1>
<p>This document is a draft and will not be published.</p>
</div>
{{ end }}
{{ block "main" . }}{{ end }}
</main>
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
{{ partial "toc.html" . }}
</div>
</div>
</div>
{{ partialCached "footer.html" . }}
</div>
{{ partial "custom-scripts.html" . }}
{{ partial "scripts.html" . }}
{{ partial "search.html" . }}
</body>
</html>