10 lines
402 B
HTML
10 lines
402 B
HTML
{{ define "main" }}
|
|
|
|
{{/* get all the pages that are regular posts and not pages */}}
|
|
{{ $postsDir := .Site.Params.Posts | default (slice "posts" "post") }}
|
|
{{ $allPostsList := where (where site.RegularPages "Section" "in" $postsDir) "Section" "!=" "" }}
|
|
{{- partial "showcase.html" . -}}
|
|
{{- partial "home_post_list.html" (dict "Ctx" . "AllPostsList" $allPostsList) -}}
|
|
|
|
{{ end }}
|