valor/layouts/index.html

15 lines
254 B
HTML
Raw Normal View History

2022-08-17 14:47:54 -04:00
<!DOCTYPE html>
<html>
2023-11-25 17:16:22 -05:00
{{partial "head" .}}
2023-03-07 02:36:26 -05:00
2023-11-25 17:16:22 -05:00
<body>
{{partial "spritesheet" .}} {{partial "header" .}}
<main>
{{ if .Content}}
<article>{{.Content}}</article>
2023-03-07 02:36:26 -05:00
{{end}}
2023-11-25 17:16:22 -05:00
</main>
{{partial "footer" .}}
</body>
2022-08-17 14:47:54 -04:00
</html>