20 lines
348 B
HTML
Raw Normal View History

2020-02-26 15:48:48 +01:00
{{ partial "header" . }}
<main>
<h2>{{ .Title }}</h2>
{{ range (.Paginator 10).Pages }}
{{ if eq "Posts" $.Title }}
{{partial "list-item-post.html" .}}
{{else}}
2020-03-06 17:20:22 +01:00
{{ partial "list-item-project.html" . }}
2020-02-26 15:48:48 +01:00
{{end}}
{{end}}
</main>
{{ partial "paginator" . }}
{{ partial "footer" . }}