2020-06-07 12:36:02 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<h1>{{ i18n .Data.Singular | humanize }}: {{ .Title }}</h1>
|
|
|
|
<div class="post-info">
|
2021-11-07 11:35:43 +01:00
|
|
|
<a href="{{ (print .Data.Plural "/") | relLangURL }}">{{ i18n (printf "toAll%s" (.Data.Plural | humanize )) | humanize }}</a>
|
2020-06-07 12:36:02 +02:00
|
|
|
</div>
|
2021-12-23 19:56:08 +01:00
|
|
|
{{ $pages := where .Pages "Params.hidden" "!=" true }}
|
|
|
|
{{ range (.Paginate $pages).Pages }}
|
2021-07-09 18:00:52 +02:00
|
|
|
{{ partial "post-summary.html" . }}
|
2020-06-07 12:36:02 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
|
2021-11-07 11:35:43 +01:00
|
|
|
{{ end }}
|