mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2025-12-06 05:31:52 +00:00
28 lines
768 B
HTML
28 lines
768 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 ) }}
|
|
{{ if ( .heading.enable ) }}
|
|
{{ partial "pricing/heading" .}}
|
|
{{ end }}
|
|
{{ partial "pricing/pricing" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</main>
|
|
{{ with .Site.Params.footer }}
|
|
{{ if ( .enable ) }}
|
|
{{ partial "footer/full" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }} |