forked from data.coop/website
15 lines
546 B
HTML
15 lines
546 B
HTML
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
|
{{ range $pages.ByPublishDate.Reverse }}
|
|
<p>
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
{{ $customDateFormat := "January 2, 2006" }}
|
|
{{ with .Site.Params.customDateFormat }}{{ $customDateFormat = . }}{{ end }}
|
|
<br>
|
|
<small class="text-secondary">{{ .PublishDate.Format $customDateFormat }}</small>
|
|
{{ partial "tags" . }}
|
|
{{ if eq .Site.Params.showPostSummary true }}
|
|
<br>
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
</p>
|
|
{{ end }} |