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

22 lines
791 B
HTML
Raw Normal View History

2022-10-27 19:01:55 +02:00
<ul class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
2022-10-21 12:56:21 +02:00
{{ range (where site.RegularPages.ByWeight "Type" "services") }}
2022-10-21 12:10:29 +02:00
<li>
<article>
{{ .Params.iconSvg | safeHTML }}
2022-10-27 19:01:55 +02:00
<div class="flex items-center gap-2 mb-2">
2022-10-27 18:38:09 +02:00
{{ if isset .Params "icon" }}
<i class="ri-{{ .Params.icon }} block text-3xl"></i>
{{ end }}
<h4 class="inline mr-1"><a href="{{ .Params.href }}" class="font-bold link">{{ .Title }}</a></h4>
</div>
2022-10-21 12:10:29 +02:00
<div class="inline prose">
{{ .Params.description | safeHTML }}
2022-10-21 12:10:29 +02:00
</div>
2022-10-27 18:38:09 +02:00
{{/* <p class="mt-2">
2022-10-27 11:50:06 +02:00
<a class="link text-default font-semibold" href="{{ .RelPermalink }}">Číst více →</a>
2022-10-27 18:38:09 +02:00
</p> */}}
2022-10-21 12:10:29 +02:00
</article>
</li>
{{ end }}
</ul>