valor/layouts/_default/list.html

16 lines
340 B
HTML
Raw Normal View History

2022-08-17 14:47:54 -04:00
<!DOCTYPE html>
<html>
{{partial "head" .}}
<body>
2023-03-06 19:41:36 -05:00
{{partial "header" .}}
<article>{{.Content}}</article>
<div class="posts">
2023-03-06 19:41:36 -05:00
{{range .Pages}}
{{partial "post" .}}
{{end}}
</div>
2023-03-06 19:41:36 -05:00
</main>
{{partial "footer" .}}
{{partial "spritesheet" .}}
2022-08-17 14:47:54 -04:00
</body>
</html>