blog/themes/minth/layouts/_default/home.html

11 lines
358 B
HTML
Raw Normal View History

{{ 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 }}
{{ end }}
{{ end }}