mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2026-01-26 23:57:34 +00:00
31 lines
883 B
HTML
31 lines
883 B
HTML
{{ define "main" }}
|
|
<main class="text-primary-800 dark:gray-400">
|
|
{{ if ( .Page.Params.hero.enable ) }}
|
|
<section class="hero flex justify-center">
|
|
<div class="h-full flex">
|
|
<div class=" align-middle px-4 my-auto">
|
|
{{ partial "hero/heading" . }}
|
|
{{ if ( .Page.Params.hero.wordSlider.enable ) }}
|
|
{{ partial "hero/slider" . }}
|
|
{{ end }}
|
|
{{ partial "hero/tagline" . }}
|
|
{{ partial "hero/veteran" . }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
{{ with .Page.Params.pricing }}
|
|
{{ if ( .enable ) }}
|
|
{{ if ( .heading.enable ) }}
|
|
{{ partial "rates/heading" .}}
|
|
{{ end }}
|
|
{{ partial "rates/rates" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</main>
|
|
{{ with .Site.Params.footer }}
|
|
{{ if ( .enable ) }}
|
|
{{ partial "footer/main" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }} |