begin to configure site - need to get rid of extra stuff still...

This commit is contained in:
2025-04-16 14:37:57 -08:00
parent 60b4202649
commit 720de92caf
30 changed files with 866 additions and 325 deletions

View File

@@ -8,7 +8,7 @@
<body class="{{ if .Params.white_bg }}bg-white dark:bg-gray-900{{ else }}bg-gray-50 dark:bg-gray-800{{ end }}">{{ end }}
{{ partial "skippy" . }}
{{ partial "nav" . }}
{{ partial "nav/main" . }}
{{ block "main" . }}
{{ end }}

View File

@@ -0,0 +1,30 @@
{{ 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 "pricing/heading" .}}
{{ end }}
{{ end }}
{{ partial "pricing/pricing" . }}
{{ end }}
{{ end }}
</main>
{{ with .Page.Params.footer }}
{{ if ( .enable ) }}
{{ partial "footer/full" . }}
{{ end }}
{{ end }}
{{ end }}

View File

@@ -1,6 +1,4 @@
{{ define "main" }}
{{ partial "navbar" . }}
<main class="w-full antialiased">
{{ .Content }}