mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
- layouts/partials/ → layouts/_partials/ - layouts/shortcodes/ → layouts/_shortcodes/ - layouts/_default/_markup/ → layouts/_markup/ - layouts/_default/*.html → layouts/*.html (flatten _default/) - layouts/index.html → layouts/home.html - layouts/index.*.json/txt → layouts/home.*.json/txt - layouts/_default/index.llms.txt → layouts/home.llms.txt - layouts/tag/ → layouts/tags/ (match /tags/ URL path)
15 lines
437 B
HTML
15 lines
437 B
HTML
<aside
|
|
class="sticky top-16 h-[calc(100vh-64px)] min-w-52 space-y-4 overflow-y-auto py-4 w-full"
|
|
>
|
|
{{ partial "github-links.html" . }}
|
|
<div id="TableOfContents" class="overflow-x-auto">
|
|
{{ partialCached "pagemeta.html" . . }}
|
|
</div>
|
|
{{- if ne .Type "guides" }}
|
|
{{ with .GetTerms "tags" }}
|
|
<div class="not-prose mt-8 px-4 overflow-x-auto">
|
|
{{- partial "tags.html" . }}
|
|
</div>
|
|
{{- end }}
|
|
{{- end }}
|
|
</aside> |