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

13 lines
332 B
HTML
Raw Permalink 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 }}
{{ partial "contact.html" . }}
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 }}