Files
flowbite-beardedtek.com/layouts/main/list.html
2025-04-17 22:29:03 -08:00

30 lines
812 B
HTML

{{ define "main" }}
<main class="text-primary-800 dark:gray-400">
{{ if ( .Page.Params.hero.enable ) }}
<section class="hero h-screen flex justify-center">
<div class="h-full flex">
<div class=" align-middle px-4 my-auto">
{{ partial "hero/heading" . }}
{{ partial "hero/slider" . }}
{{ partial "hero/tagline" . }}
</div>
</div>
</section>
{{ end }}
{{ with .Page.Params.pricing }}
{{ if ( .enable ) }}
{{ with .heading }}
{{ if ( .enable ) }}
{{ partial "rates/heading" .}}
{{ end }}
{{ end }}
{{ partial "rates/rates" . }}
{{ end }}
{{ end }}
{{ with .Page.Params.footer }}
{{ if ( .enable ) }}
{{ partial "footer/main" . }}
{{ end }}
{{ end }}
</main>
{{ end }}