mirror of
https://github.com/docker/docs.git
synced 2026-03-29 07:18:51 +07:00
h1 elements with IDs need a scroll margin to account for the header and margin height. These anchors are linked automatically by Algolia. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
18 lines
400 B
HTML
18 lines
400 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 id="{{ anchorize . }}" class="scroll-mt-36">{{ . }}</h1>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "right" }}
|
|
{{ partial "aside.html" . }}
|
|
{{ end }}
|