kebler.net
5f481fecfb
refactor: navbar to include draft div when on draft site feat: add abaility for text shadow to hero text rename page.css to sections.css
13 lines
255 B
HTML
13 lines
255 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ if ne .Site.Params.navbar.hidden true }}
|
|
{{ partial "navbar.html" . }}
|
|
{{ end }}
|
|
<main class="error404">
|
|
{{ partial "404.html" . }}
|
|
</main>
|
|
{{ partial "js.html" . }}
|
|
</body>
|
|
</html>
|