freedom/layouts/_default/list.html

27 lines
454 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>
<article>
{{if .Content}}
2022-08-22 20:03:48 -04:00
<section>
2022-09-21 15:54:30 -04:00
{{.Content}}
2022-09-09 15:34:02 -04:00
</section>
2022-09-21 15:54:30 -04:00
{{end}}
{{ if .Pages }}
{{range .Pages}}
{{partial "item" .}}
{{end}}
{{end}}
</article>
</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>