mirror of https://github.com/docker/docs.git
22 lines
471 B
HTML
22 lines
471 B
HTML
{{ define "left" }}
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<article class="DocSearch-content prose max-w-none dark:prose-invert">
|
|
{{ with .Title }}
|
|
<h1 class="scroll-mt-36">{{ . }}</h1>
|
|
{{ end }}
|
|
<div class="block lg:hidden">
|
|
{{ partial "pagemeta.html" . }}
|
|
<hr>
|
|
</div>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "right" }}
|
|
{{ partial "aside.html" . }}
|
|
{{ end }}
|