public-web/layouts/partials/services.html
ondrej 35a966d826
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add support for "other services"
2023-05-06 11:32:33 +02:00

9 lines
387 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">
{{ $services := where site.RegularPages.ByWeight "Type" "services" }}
{{ range (union (where $services "Params.category" "primary") (where $services "Params.category" nil)) }}
<li>
{{ partial "service-card.html" (dict "service" . ) }}
</li>
{{ end }}
</ul>