Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion layouts/develop/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ <h1>
{{ partial "feedback.html" . }}
</section>
</div>
{{ partial "docs-toc.html" . }}
{{ if not .Params.hideTOC }}
{{ partial "docs-toc.html" . }}
{{ end }}
{{ partial "scripts.html" . }}
</main>
{{ end }}
6 changes: 4 additions & 2 deletions layouts/operate/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ define "main" }}
<main class="docs w-full max-w-[1920px] mx-auto px-5 flex flex-col md:flex-row overflow-hidden">
{{ partial "docs-nav.html" . }}
<div class="py-12 md:pl-4 xl:px-16 overflow-hidden">
<div class="w-full py-12 md:pl-4 xl:px-16 overflow-hidden">
{{ partial "breadcrumbs" . }}
<section class="prose w-full py-12 max-w-none">
<h1>
Expand Down Expand Up @@ -92,7 +92,9 @@ <h1>
{{ partial "feedback.html" . }}
</section>
</div>
{{ partial "docs-toc.html" . }}
{{ if not .Params.hideTOC }}
{{ partial "docs-toc.html" . }}
{{ end }}
{{ partial "scripts.html" . }}
</main>
{{ end }}
6 changes: 4 additions & 2 deletions layouts/operate/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ define "main" }}
<main class="docs w-full max-w-[1920px] mx-auto px-5 flex flex-col md:flex-row overflow-hidden">
{{ partial "docs-nav.html" . }}
<div class="py-12 md:pl-4 xl:px-16 overflow-hidden">
<div class="w-full py-12 md:pl-4 xl:px-16 overflow-hidden">
{{ partial "breadcrumbs" . }}
<section class="prose w-full py-12 max-w-none">
<h1>{{ .Title }}</h1>
Expand Down Expand Up @@ -82,7 +82,9 @@ <h1>{{ .Title }}</h1>
{{ partial "feedback.html" . }}
</section>
</div>
{{ partial "docs-toc.html" . }}
{{ if not .Params.hideTOC }}
{{ partial "docs-toc.html" . }}
{{ end }}
{{ partial "scripts.html" . }}
</main>
{{ end }}