mirror of https://github.com/docker/docs.git
8 lines
339 B
HTML
8 lines
339 B
HTML
<div class="not-prose grid grid-cols-3 xl:grid-cols-2 gap-4 sm:flex sm:flex-col">
|
|
{{ $items := index .Page.Params (.Get 0 | default "grid") }}
|
|
{{ range $items }}
|
|
{{ $opts := dict "title" .title "link" .link "description" .description "icon" .icon "image" .image }}
|
|
{{ partial "components/card.html" $opts }}
|
|
{{ end }}
|
|
</div>
|