mirror of
https://github.com/jointakahe/jointakahe
synced 2025-02-20 12:20:35 +01:00
14 lines
373 B
HTML
14 lines
373 B
HTML
<h1>{{ .Title }}</h1>
|
|
<ul>
|
|
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
|
{{ range $pages.ByPublishDate.Reverse }}
|
|
<li>
|
|
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
|
|
{{ .PublishDate.Format $dateFormat }}
|
|
<a href="{{ .Permalink }}">
|
|
{{ .Title }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|