forked from o3de/o3de.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection.html
More file actions
29 lines (29 loc) · 1.07 KB
/
section.html
File metadata and controls
29 lines (29 loc) · 1.07 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
{{ define "main" }}
<div class="docs-layout">
<div class="container-fluid">
<section class="row flex">
<section class="col-12 col-md-12 col-xl-2 docs-sidebar order-2 order-xl-1">
{{ partial "section-nav.html" . }}
</section>
<section class="col-12 col-md-12 col-xl-10 docs-content pt-3 px-5 pb-3 order-1 order-xl-2">
<div class="row">
<div class="col-12 col-md-12 col-xl-12 order-1 order-xl-1">
{{ partial "single-header.html" . }}
</div>
{{ if and (ge (len .TableOfContents) 100) (ne .Params.toc "false") }}
<div class="col-12 col-xl-2 pt-5 order-2 order-xl-3">
{{ partial "docs/docs-nav.html" . }}
</div>
{{ end }}
<div class="col-12 col-xl-10 order-3 order-xl-2">
<h1 class="title">{{ .Page.Title | markdownify }}</h1>
{{ partial "docs/content.html" . }}
<hr class="mt-5" />
{{ partial "footer-content.html" . }}
</div>
</div>
</section>
</section>
</div>
</div>
{{ end }}