Files
flowbite-beardedtek.com/layouts/contact/list.html
2025-04-15 14:55:06 -08:00

21 lines
435 B
HTML

{{ define "main" }}
<main class="">
{{ "<!-- Contact Section Start -->" | safeHTML }}
{{ if ( .Page.Params.header.enable ) }}
{{ partial "contact/header" . }}
{{ end }}
{{ if ( .Page.Params.form.enable ) }}
{{ partial "contact/form" . }}
{{ end }}
{{ if ( .Page.Params.enable.about ) }}
{{ partial "about.html" . }}
{{ end }}
{{ if ( .Page.Params.footer.enable ) }}
{{ partial "full-footer" . }}
{{ end }}
</main>
{{ end }}