1
0
Fork 0
mirnet.org/themes/mir/layouts/_default/single.html

28 lines
1.1 KiB
HTML
Raw Normal View History

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 }}
<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:27:31 -04:00
<div class="w-full relative inline-block">
<div class="flex-col md:flex hidden bg-[#f1f5fc] p-4 rounded-lg">
<img class="relative object-cover aspect-square h-96 rounded-lg" src="{{ .Params.Img }}">
</img>
<div class="text-xs">Photo: <a class="z-40 font-bold" target="_blank"
href="https://unsplash.com/photos/group-of-blue-jellyfish-SJ94Ce7jpMc">Kaede KBYS</a></div>
</div>
<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 }}