2024-03-26 21:51:04 +00:00
|
|
|
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{ $postsDir := .Site.Params.Posts | default (slice "posts" "post") }}
|
|
|
|
{{ $allPostsList := where (where site.RegularPages "Section" "in" $postsDir) "Section" "!=" "" }}
|
|
|
|
{{ range $allPostsList }}
|
|
|
|
<h2><a class="title" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
2024-07-24 19:30:19 +00:00
|
|
|
{{ .Summary }}
|
2024-03-26 21:51:04 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|