gallowelds.com/themes/gallo/layouts/_default/single.html
2024-05-22 21:37:08 -04:00

14 lines
427 B
HTML

{{ define "main" }}
<div class="flex justify-center px-16 pt-16 bg-white text-black min-h-[700px]">
<div class="mb-24 w-full max-w-[800px] h-full">
<div class="flex flex-col">
<h1 class="text-4xl font-bold">{{ .Title }}</h1>
{{ partial "metadata.html" . }}
<div class="mt-4">{{ .Content }}</div>
</div>
{{ partial "questions.html" . }} {{ partial "gallery.html" . }}
</div>
</div>
{{ end }}