2022-10-21 12:56:21 +02:00
|
|
|
{{ define "title" }}{{ site.Title }}{{ end }}
|
|
|
|
|
|
|
|
{{ define "main" -}}
|
|
|
|
<main>
|
|
|
|
<section class="container mx-auto px-6 mb-6 mt-6 prose">
|
2023-04-10 12:48:24 +02:00
|
|
|
<div class="max-w-screen-lg">{{ .Content }}</div>
|
2022-10-21 12:56:21 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="container mx-auto px-6 my-16">
|
|
|
|
{{ partial "services.html" }}
|
|
|
|
</section>
|
2023-05-06 11:32:33 +02:00
|
|
|
|
|
|
|
<section class="container mx-auto px-6 my-16">
|
|
|
|
<h2 class="subheading mb-8">Další 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 (where $services "Params.category" "secondary") }}
|
|
|
|
<li>
|
|
|
|
{{ partial "service-card" (dict "service" . ) }}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</section>
|
2022-10-21 12:56:21 +02:00
|
|
|
</main>
|
|
|
|
{{ end }}
|