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

24 lines
873 B
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>
<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 }}