holy/layouts/_default/baseof.html

16 lines
466 B
HTML
Raw Normal View History

2022-04-02 09:23:58 +00:00
<!DOCTYPE html>
<html>
2022-04-04 16:20:04 +00:00
{{- partial "head.html" . -}}
2023-05-11 21:13:55 +00:00
<body class="bg:fade-84@dark font:fade-16@dark font:sans">
2022-05-09 10:25:13 +00:00
{{ partial "header.html" . -}}
2022-05-10 08:32:59 +00:00
<div class="d:flex flex:column@<=sm pt:90 px:24 jc:center gap:44 word-break:break-word">
2022-05-09 10:25:13 +00:00
{{- block "side" . }}{{- end }}
2022-05-10 06:06:38 +00:00
<div class="max-w:700 w:full box:content-box">
2022-05-09 10:25:13 +00:00
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
2022-04-02 09:23:58 +00:00
</div>
2022-04-04 16:20:04 +00:00
</div>
</body>
2022-04-11 17:33:41 +00:00
</html>