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

26 lines
809 B
HTML

{{ define "title" }}{{ site.Title }}{{ end }}
{{ define "main" -}}
{{ partial "header.html" . }}
<main>
<section class="container mx-auto px-6 mb-6 mt-6 prose">
<div class="max-w-screen-lg">{{ .Content }}</div>
</section>
<section class="container mx-auto px-6 my-16">
{{ partial "services.html" }}
</section>
<section class="container mx-auto px-6 my-16">
<h2 class="subheading mb-8">{{ i18n "other_services" }}</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 (where $services "Params.category" "secondary") }}
<li>
{{ partial "service-card" (dict "service" . ) }}
</li>
{{ end }}
</ul>
</section>
</main>
{{ end }}