mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2025-12-06 05:31:52 +00:00
17 lines
435 B
HTML
17 lines
435 B
HTML
{{ define "main" }}
|
|
<main class="text-primary-800 dark:gray-400">
|
|
{{ if ( .Page.Params.hero.enable ) }}
|
|
{{ partial "hero/index" .}}
|
|
{{ end }}
|
|
{{ if ( .Page.Params.rates.enable ) }}
|
|
{{ if ( .Page.Params.rates.heading.enable ) }}
|
|
{{ partial "rates/heading" .}}
|
|
{{ end }}
|
|
{{ partial "rates/rates" . }}
|
|
{{ end }}
|
|
</main>
|
|
{{ if ( .Site.Params.footer.enable ) }}
|
|
{{ partial "footer/main" . }}
|
|
{{ end }}
|
|
{{ end }}
|