freedom/layouts/_default/list.html

26 lines
567 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<!DOCTYPE html>
<html>
<head>
{{partial "head" .}}
</head>
<body>
2022-08-22 20:03:48 -04:00
{{partial "header" .}}
<main>
<section>
{{ if .Content}}
<article>
{{.Content}}
</article>
2022-08-17 14:50:07 -04:00
{{end}}
2022-08-22 20:03:48 -04:00
{{ if .Pages }}
2022-09-09 15:34:02 -04:00
<section>
2022-08-22 20:03:48 -04:00
{{range .Pages}}
2022-09-15 17:12:24 -04:00
{{partial "item" .}}
2022-08-22 20:03:48 -04:00
{{end}}
2022-09-09 15:34:02 -04:00
</section>
2022-08-22 20:03:48 -04:00
{{end}}
</main>
2022-08-17 14:50:07 -04:00
{{partial "footer" .}}
2022-08-22 20:03:48 -04:00
</body>
2022-08-17 14:50:07 -04:00
</html>