site: use common base layout in search layout

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
David Karlsson 2024-09-16 14:53:39 +02:00
parent 4443d3640a
commit a2497ef464
3 changed files with 28 additions and 38 deletions

View File

@ -1,7 +1,7 @@
--- ---
cascade: cascade:
- build: - build:
list: local list: never
publishResources: false publishResources: false
render: never render: never
--- ---

View File

@ -391,7 +391,6 @@
"mt-1", "mt-1",
"mt-2", "mt-2",
"mt-20", "mt-20",
"mt-auto",
"mx-auto", "mx-auto",
"my-0", "my-0",
"my-2", "my-2",

View File

@ -1,13 +1,8 @@
<!doctype html> {{ define "left" }}
<html lang="en"> {{ partial "sidebar.html" . }}
{{ end }}
<head> {{ define "main" }}
{{ partial "head.html" . }}
</head>
<body class="flex min-h-screen flex-col bg-background-light text-base dark:bg-background-dark dark:text-white">
{{ partial "header.html" . }}
<main class="flex justify-center">
<div class="w-lvw overflow-clip p-6 pt-0 lg:w-[1200px]"> <div class="w-lvw overflow-clip p-6 pt-0 lg:w-[1200px]">
<article class="prose max-w-none dark:prose-invert"> <article class="prose max-w-none dark:prose-invert">
<h1 class="py-4">{{ .Title }}</h1> <h1 class="py-4">{{ .Title }}</h1>
@ -31,8 +26,6 @@
</div> </div>
</article> </article>
</div> </div>
</main>
<footer class="mt-auto">{{ partialCached "footer.html" . }}</footer>
<script type="module"> <script type="module">
// Global variable to hold the pagefind module // Global variable to hold the pagefind module
let pagefind; let pagefind;
@ -180,6 +173,4 @@
}); });
} }
</script> </script>
</body> {{ end }}
</html>