freedom/layouts/_default/list.html

33 lines
669 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 15:54:30 -04:00
<head>
{{partial "head" .}}
</head>
2023-01-04 16:59:09 -05:00
2022-09-21 15:54:30 -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 15:54:30 -04:00
<main>
2023-01-04 16:59:09 -05:00
<section>
{{if .Content}}
{{.Content}}
2022-09-21 15:54:30 -04:00
{{end}}
2023-03-23 10:46:27 -04:00
{{ template "_internal/pagination.html" .}}
2023-02-19 21:39:29 -05:00
<div class="gallery">
2023-01-04 16:59:09 -05:00
{{ if .Pages }}
2023-03-23 10:46:27 -04:00
{{range (.Paginate .Pages).Pages}}
2023-01-04 16:59:09 -05:00
{{partial "item" .}}
{{end}}
{{end}}
</div>
2023-03-23 10:46:27 -04:00
{{ template "_internal/pagination.html" .}}
2023-01-04 16:59:09 -05: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>