This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/layouts/partials/services.html

20 lines
755 B
HTML

<ul class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
{{ range (where site.RegularPages.ByWeight "Type" "services") }}
<li>
<article>
<div class="flex flex-col lg:flex-row lg:items-center lg:gap-2 mb-2">
{{ with .Params.icon }}
<span class="fill-current">{{ . | safeHTML }}</span>
{{ end }}
<h4 class="mr-1"><a href="{{ .Params.href }}" class="font-bold link">{{ .Title }}</a></h4>
</div>
<div class="prose">
{{ .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>