valor/layouts/index.html

18 lines
296 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>
<main>
{{partial "header" .}}
{{partial "side1" .}}
<section id="content">
{{.Content}}
</section>
{{partial "side2" .}}
2023-11-25 17:16:22 -05:00
{{partial "footer" .}}
</main>
{{partial "spritesheet" .}}
2023-11-25 17:16:22 -05:00
</body>
2022-08-17 14:47:54 -04:00
</html>