mirror of https://github.com/docker/docs.git
20 lines
549 B
HTML
20 lines
549 B
HTML
{{ define "main" }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<article class="DocSearch-content prose max-w-none dark:prose-invert">
|
|
<h1 class="scroll-mt-36">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
<div class="grid grid-cols-1 gap-4 lg:grid-cols-2 xl:grid-cols-3">
|
|
{{ range site.Taxonomies.tags }}
|
|
{{ partial "components/card.html"
|
|
(dict
|
|
"link" .Page.Permalink
|
|
"title" .Page.Title
|
|
"description" .Page.Description
|
|
"icon" .Page.Params.icon
|
|
)
|
|
}}
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|