2018-11-24 15:14:43 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ $paginator := .Paginate (where .Pages "Params.hidden" "ne" true) }}
|
|
|
|
{{ range sort .Paginator.Pages }}
|
|
|
|
<article>
|
|
|
|
<h2>
|
2019-02-20 10:37:48 +01:00
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
2018-11-24 15:14:43 +01:00
|
|
|
</h2>
|
2018-11-25 13:30:25 +01:00
|
|
|
<h5>
|
2019-03-26 12:59:35 +01:00
|
|
|
<strong>{{ .Date.Format .Site.Params.DateForm }}</strong>
|
2018-11-25 13:30:25 +01:00
|
|
|
</h5>
|
2019-01-24 23:30:31 +01:00
|
|
|
<p class="markdown">
|
2018-11-25 13:30:25 +01:00
|
|
|
{{- .Summary -}}
|
2018-11-24 15:14:43 +01:00
|
|
|
{{ if .Truncated }}
|
2019-02-20 10:37:48 +01:00
|
|
|
<a href="{{ .RelPermalink }}">...</a>
|
2018-11-24 15:14:43 +01:00
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
{{ template "_internal/pagination.html" . }}
|
2018-11-25 13:30:25 +01:00
|
|
|
{{ end }}
|