public-web/layouts/partials/services.html
2023-03-01 16:55:39 +01:00

21 lines
797 B
HTML

<h2 class="sr-only">Služby</h2>
<ul class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-x-8 gap-y-12">
{{ range (where site.RegularPages.ByWeight "Type" "services") }}
<li>
<article>
<div class="flex flex-row items-center gap-2 mb-2 -ml-0.5">
{{ with .Params.icon }}
<span class="fill-current">{{ . | safeHTML }}</span>
{{ end }}
<h3 class="mr-1"><a href="{{ .Params.href }}" class="font-bold link">{{ .Title }}</a></h3>
</div>
<div class="prose text-sm">
{{ .Params.description | safeHTML }}
</div>
{{/* <p class="mt-2">
<a class="link text-default font-semibold" href="{{ .RelPermalink }}">Číst více →</a>
</p> */}}
</article>
</li>
{{ end }}
</ul>