This commit is contained in:
Madison Scott-Clary
2023-02-17 00:42:06 -08:00
parent f394a10571
commit f9c18a88f9
12 changed files with 49 additions and 11 deletions

11
layouts/page/baseof.html Normal file
View File

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