mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2025-12-06 13:41:51 +00:00
15 lines
366 B
HTML
15 lines
366 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 }}
|
|
{{ .Content }}
|
|
</main>
|
|
{{ end }}
|