valor/layouts/index.html

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