mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
24 lines
767 B
HTML
24 lines
767 B
HTML
{{ partial "breadcrumbs.html" . }}
|
|
<div class="flex items-start justify-between">
|
|
<h1 data-pagefind-weight="10">{{ .Title | safeHTML }}</h1>
|
|
<div class="md-dropdown ml-auto hidden lg:block">
|
|
{{ partial "md-dropdown.html" . }}
|
|
</div>
|
|
</div>
|
|
<div class="block lg:hidden">
|
|
{{ partialCached "pagemeta.html" . . }}
|
|
<hr />
|
|
</div>
|
|
{{ .Content }}
|
|
{{- if and (eq .Type "guides") (not .IsSection) (ne .CurrentSection .FirstSection) -}}
|
|
{{- with .PrevInSection -}}
|
|
<div class="not-prose col-start-2 my-4">
|
|
<a
|
|
href="{{ .Permalink }}"
|
|
class="cursor-pointer rounded-sm bg-blue-500 px-4 py-2 text-white hover:bg-blue-400 dark:bg-blue-800 dark:hover:bg-blue-700"
|
|
>{{ .Title }} »</a
|
|
>
|
|
</div>
|
|
{{- end -}}
|
|
{{- end -}}
|