1
0
Fork 0
mirnet.org/themes/mir/layouts/_default/single.html
brooke 3bddc9c092 general improvements. single default, addded dark theme.
fixed issue with contact form color overlay.
2024-09-13 13:50:19 -04:00

13 lines
No EOL
332 B
HTML

{{ define "main" }}
<div class="flex justify-center max-w-[1200px]">
<div class="mb-24 h-full">
<div class="flex flex-col">
{{ if .Params.contact }}
{{ partial "contact.html" . }}
{{ else }}
<div class="mt-2 flex flex-col gap-4">{{ .Content }}</div>
{{ end }}
</div>
</div>
</div>
{{ end }}