freedom/layouts/index.html

21 lines
296 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<!DOCTYPE html>
<html>
2023-01-04 16:59:09 -05:00
2022-09-21 18:12:12 -04:00
<head>
{{partial "head" .}}
</head>
2023-01-04 16:59:09 -05:00
2022-09-21 18:12:12 -04:00
<body>
{{partial "header" .}}
2023-01-04 16:59:09 -05:00
{{partial "banner" .}}
2022-09-21 18:12:12 -04:00
<main>
2023-03-06 19:49:09 -05:00
<article>
{{.Content}}
</article>
2022-09-21 18:12:12 -04:00
</main>
2023-07-14 08:17:37 -04:00
<hr>
2022-09-21 18:12:12 -04:00
{{ partial "footer" .}}
2023-07-14 08:17:37 -04:00
{{partial "spritesheet" .}}
2022-09-21 18:12:12 -04:00
</body>
2022-08-17 14:50:07 -04:00
</html>