-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathbaseof.html
More file actions
37 lines (37 loc) · 1.25 KB
/
baseof.html
File metadata and controls
37 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html
itemscope
itemtype="http://schema.org/WebPage"
lang="{{ .Site.Language.Lang }}"
dir="{{ .Site.Language.Direction }}"
class="no-js"
>
<head>
{{ partial "head.html" . }}
</head>
<body
class="td-{{ .Kind }}{{ with .Page.Params.body_class }} {{ . }}{{ end }}"
>
<header>{{ partial "navbar.html" . }}</header>
<div class="container-fluid td-outer">
<div class="td-main">
<div class="row flex-xl-nowrap">
<aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</aside>
<aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
{{ partial "page-meta-links.html" . }} {{ partial "toc.html" . }} {{
partial "taxonomy_terms_clouds.html" . }}
</aside>
<main class="col-12 col-md-9 col-xl-8" role="main">
{{ partial "version-banner.html" . }} {{ if not
.Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" .
}}{{ end }} {{ block "main" . }}{{ end }}
</main>
</div>
</div>
{{ partial "footer.html" . }}
</div>
{{ partial "scripts.html" . }} {{ partial "image-modal.html" . }}
</body>
</html>