feat: implement navbar, update styles and docs

chore: add styles to html and body

chore: update theme for tailwind config

chore: update colors

chore: add list layout override for docs

chore: update default layouts

chore: update contents
This commit is contained in:
Xin
2023-07-25 23:27:01 +01:00
parent 3ec2e18870
commit e0bfaf0467
18 changed files with 303 additions and 142 deletions

View File

@ -1,11 +1,9 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
{{- partial "head.html" . -}}
<body dir="ltr">
{{- partial "navbar.html" . -}}
{{- block "main" . }}{{ end -}}
{{- partial "footer.html" . -}}
</body>
</html>

View File

@ -0,0 +1,5 @@
{{ define "main" }}
<div class="mx-auto flex max-w-[90rem]">
<p class="p-4">Unimplemented</p>
</div>
{{ end }}

View File

@ -0,0 +1,5 @@
{{ define "main" }}
<div class="mx-auto flex max-w-[90rem]">
<p class="p-4">Unimplemented</p>
</div>
{{ end }}