2024-05-22 14:22:07 -04:00
|
|
|
{{ define "main" }}
|
2024-08-16 14:05:53 -04:00
|
|
|
<div
|
|
|
|
class="flex justify-center px-2 sm:px-16 pt-16 bg-white text-black min-h-[700px]"
|
|
|
|
>
|
2024-06-04 05:12:29 -04:00
|
|
|
<div class="mb-24 w-full max-w-[1200px] h-full">
|
2024-08-16 14:05:53 -04:00
|
|
|
{{ if .Params.thankyou }} {{ partial "thankyou.html" . }} {{ else }}
|
2024-05-22 21:37:08 -04:00
|
|
|
<div class="flex flex-col">
|
2024-07-31 21:52:45 -04:00
|
|
|
<p class="text-4xl font-bold">{{ .Title }}</p>
|
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>
|
2024-06-09 01:12:33 -04:00
|
|
|
{{ partial "buttons.html" . }} {{ if .Params.catalog }} {{ partial
|
2024-07-15 13:17:27 -04:00
|
|
|
"rental_catalog.html" . }} {{ end }} {{ if .Params.art }} {{ partial
|
|
|
|
"artist_catalog.html" . }} {{ end }}
|
2024-05-22 21:37:08 -04:00
|
|
|
</div>
|
2024-08-16 14:05:53 -04:00
|
|
|
{{ end }} {{ partial "questions.html" . }} {{ partial "contact_form.html" .
|
|
|
|
}} {{ partial "gallery.html" . }}
|
2024-05-22 21:37:08 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|