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:21:36 -04:00
|
|
|
<div class="flex-col md:flex hidden bg-[#f1f5fc] p-4 rounded-lg">
|
|
|
|
<img class="relative object-cover aspect-[12/10] h-96 rounded-lg" src="{{ .Params.img }}">
|
|
|
|
</img>
|
2024-09-12 19:24:24 -04:00
|
|
|
<div class="text-xs" >Photo: <a class="z-40 font-bold" target="_blank"
|
2024-09-12 19:21:36 -04:00
|
|
|
href="https://unsplash.com/photos/group-of-blue-jellyfish-SJ94Ce7jpMc">Kaede KBYS</a></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 }}
|