justice/layouts/_default/single.html

15 lines
226 B
HTML
Raw Normal View History

2023-12-27 20:47:48 -05:00
<!DOCTYPE html>
<html>
{{partial "head" .}}
<body>
{{partial "header" .}}
<main>
{{ if .Content}}
<article>{{.Content}}</article>
{{end}}
</main>
{{partial "footer" .}}
</body>
</html>