mirror of
https://github.com/docker/docs.git
synced 2026-03-29 23:38:56 +07:00
25 lines
593 B
HTML
25 lines
593 B
HTML
{{ define "left" }}
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<article class="prose max-w-none dark:prose-invert">
|
|
{{ with .Title }}
|
|
<h1 data-pagefind-weight="10" class="scroll-mt-36">{{ . }}</h1>
|
|
{{ end }}
|
|
{{ if eq .CurrentSection.Layout "series" }}
|
|
{{ partial "guides-stepper.html" . }}
|
|
{{ end }}
|
|
<div class="block lg:hidden">
|
|
{{ partialCached "pagemeta.html" . . }}
|
|
<hr>
|
|
</div>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "right" }}
|
|
{{ partial "aside.html" . }}
|
|
{{ end }}
|