You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
678 B
HTML

<!DOCTYPE html>
<html>
<head>
{{partial "head" .}}
</head>
<body>
{{partial "header" .}}
{{partial "banner" .}}
{{partial "spritesheet" .}}
<main>
<section>
{{if .Content}}
{{.Content}}
{{end}}
{{ template "_internal/pagination.html" .}}
<div class="gallery">
{{ if .Pages }}
{{range (.Paginate .Pages).Pages}}
{{partial "item" .}}
{{end}}
{{end}}
</div>
{{ template "_internal/pagination.html" .}}
</section>
</main>
<hr>
{{partial "footer" .}}
</body>
</html>