mirror of
https://github.com/BeardedTek/flowbite-beardedtek.com.git
synced 2025-12-06 05:31:52 +00:00
21 lines
511 B
HTML
21 lines
511 B
HTML
<!doctype html>
|
|
<html lang="en" class="">
|
|
|
|
<head>
|
|
{{ partial "header" . }}
|
|
</head>
|
|
{{ block "body_override" . }}
|
|
|
|
<body class="{{ if .Params.white_bg }}bg-white dark:bg-gray-900{{ else }}bg-gray-50 dark:bg-gray-800{{ end }}">{{ end }}
|
|
{{ partial "skippy" . }}
|
|
{{ if .Site.Params.navbar.enable }}
|
|
{{ partial "nav/main" . }}
|
|
{{ end }}
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
{{ if ( .Site.Params.footer.enable ) }}
|
|
{{ partial "footer/main" . }}
|
|
{{ end }}
|
|
{{ partial "scripts" . }}
|
|
</body>
|
|
</html> |