gallowelds.com/themes/gallo/layouts/_default/single.html
brooke 1212eb7521
All checks were successful
Hugo / build (push) Successful in 10s
update artist statement/bio
2024-07-31 21:52:45 -04:00

18 lines
736 B
HTML

{{ define "main" }}
<div class="flex justify-center px-2 sm:px-16 pt-16 bg-white text-black min-h-[700px]">
<div class="mb-24 w-full max-w-[1200px] h-full">
<div class="flex flex-col">
<p class="text-4xl font-bold">{{ .Title }}</p>
<p class="text-lg">{{ .Params.subTitle }}</p>
{{ partial "metadata.html" . }}
<div class="mt-2 flex flex-col gap-4">{{ .Content }}</div>
{{ partial "buttons.html" . }} {{ if .Params.catalog }} {{ partial
"rental_catalog.html" . }} {{ end }} {{ if .Params.art }} {{ partial
"artist_catalog.html" . }} {{ end }}
</div>
{{ partial "questions.html" . }} {{ partial "contact_form.html" . }} {{
partial "gallery.html" . }}
</div>
</div>
{{ end }}