2024-09-12 13:41:14 -04:00
|
|
|
{{ define "main" }}
|
2024-09-12 19:07:06 -04:00
|
|
|
<div class="flex justify-center max-w-[1200px]">
|
|
|
|
<div class="mb-24 h-full">
|
2024-09-12 13:41:14 -04:00
|
|
|
<div class="flex flex-col">
|
2024-09-12 19:07:06 -04:00
|
|
|
{{ if .Params.contact }}
|
2024-09-12 19:13:58 -04:00
|
|
|
<section class="flex-row flex m-4 gap-8">
|
2024-09-12 19:07:06 -04:00
|
|
|
<div class="bg-[#f1f5fc] p-4 rounded-lg">
|
|
|
|
<p class="text-5xl uppercase">{{ .Title }}</p>
|
|
|
|
<p class="text-lg">{{ .Params.subTitle }}</p>
|
|
|
|
{{ partial "contact.html" . }}
|
|
|
|
</div>
|
2024-09-12 19:41:08 -04:00
|
|
|
<div class="flex-col flex bg-[#f1f5fc] p-4 rounded-lg">
|
|
|
|
<img class="relative object-cover aspect-square h-96 rounded-lg" src="{{ .Params.Img }}">
|
|
|
|
</img>
|
2024-09-12 19:27:31 -04:00
|
|
|
<div class="absolute inset-0 bg-white opacity-20 rounded-lg pointer-events-none"></div>
|
2024-09-12 19:07:06 -04:00
|
|
|
</div>
|
|
|
|
</section>
|
2024-09-12 15:01:22 -04:00
|
|
|
{{ else }}
|
2024-09-12 13:41:14 -04:00
|
|
|
<div class="mt-2 flex flex-col gap-4">{{ .Content }}</div>
|
2024-09-12 15:01:22 -04:00
|
|
|
{{ end }}
|
2024-09-12 13:41:14 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|