public-web/layouts/partials/services.html
2024-07-16 03:19:06 +02:00

8 lines
354 B
HTML

<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>