freedom/layouts/index.html

26 lines
441 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" .}}
2023-02-19 21:39:30 -05:00
{{partial "spritesheet" .}}
2022-09-21 18:12:12 -04:00
<main>
2023-01-04 16:59:09 -05:00
2022-09-21 18:12:12 -04:00
<section id="main-content">
<article>
{{.Content}}
</article>
</section>
<section id="sidebar">
2022-08-22 20:03:48 -04:00
{{partial "sidebar" .}}
2022-09-21 18:12:12 -04:00
</section>
</main>
{{ partial "footer" .}}
</body>
2022-08-17 14:50:07 -04:00
</html>