mirror of
https://gitlab.com/fabinfra/fabinfra-theme.git
synced 2025-03-12 22:51:49 +01:00
20 lines
343 B
HTML
20 lines
343 B
HTML
{{ partial "header" . }}
|
|
|
|
<main>
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
{{ range (.Paginator 10).Pages }}
|
|
{{ if eq "Posts" $.Title }}
|
|
{{partial "list-item-post.html" .}}
|
|
{{else}}
|
|
{{ partial "list-item-project" . }}
|
|
{{end}}
|
|
{{end}}
|
|
|
|
</main>
|
|
|
|
{{ partial "paginator" . }}
|
|
|
|
|
|
{{ partial "footer" . }}
|