-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseof.html
More file actions
20 lines (20 loc) · 782 Bytes
/
baseof.html
File metadata and controls
20 lines (20 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html
class="bg-neutral-100 text-neutral-900 dark:bg-neutral-900 text-sm md:text-base dark:text-neutral-50"
lang="{{ site.Language.LanguageCode }}"
dir="{{ or site.Language.LanguageDirection `ltr` }}">
<head>
{{- partial "head.html" . }}
</head>
<body id="body" class="@container flex flex-col w-full overflow-x-hidden relative">
<header class="flex flex-row items-baseline m-0 p-0 px-2 md:pb-2 lg:mx-32 bg-neutral-100 dark:bg-neutral-900">
{{- partial "header.html" . }}
</header>
<main class="main flex flex-col m-0 p-2 md:px-8 md:pt-4 lg:mx-32 bg-white dark:bg-zinc-800 border-1">
{{- block "main" . }}{{ end -}}
</main>
<footer class="m-0 p-0 mb-2 md:pt-4 flex flex-col items-center">
{{ partial "footer.html" . -}}
</footer>
</body>
</html>