2024-05-22 14:22:07 -04:00
|
|
|
{{ define "main" }}
|
2024-05-22 21:37:08 -04:00
|
|
|
<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>
|
2024-05-23 21:08:04 -04:00
|
|
|
<p class="text-lg">{{ .Params.subTitle }}</p>
|
2024-05-22 21:37:08 -04:00
|
|
|
{{ partial "metadata.html" . }}
|
2024-05-23 21:08:04 -04:00
|
|
|
<div class="mt-2 flex flex-col gap-4">{{ .Content }}</div>
|
|
|
|
{{ partial "buttons.html" . }}
|
2024-05-22 21:37:08 -04:00
|
|
|
</div>
|
2024-05-22 14:22:07 -04:00
|
|
|
|
2024-05-23 21:08:04 -04:00
|
|
|
{{ partial "questions.html" . }} {{ partial "gallery.html" . }} {{ partial
|
|
|
|
"masonry_gallery.html" . }}
|
2024-05-22 21:37:08 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|