freedom/layouts/_default/list.html

23 lines
431 B
HTML
Raw Normal View History

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