{{ $ := .root }} {{ $page := .page }} {{ $posts_len := len (where (where $.Site.RegularPages "Type" "post") ".Params.notonhomepage" nil) }}

{{ with $page.Title }}{{ . | markdownify }}{{ end }}

{{ with $page.Params.subtitle }}

{{ . | markdownify }}

{{ end }} {{ if gt $posts_len $page.Params.count }}

{{ i18n "more_posts" | markdownify }}

{{ end }}
{{ with $page.Content }}

{{ . | markdownify }}

{{ end }} {{ if gt (len $page.Params.tags_include) 0 }} {{ $posts := where (where (where $.Site.RegularPages "Type" "post") ".Params.tags" "intersect" $page.Params.tags_include) ".Params.notonhomepage" nil }} {{ $.Scratch.Add "show_post" "1" }} {{ range $post := first $page.Params.count $posts }} {{ $.Scratch.Set "show_post" "1" }} {{/* If `tags_include` is set, exclude posts with no tags. */}} {{ if and ($page.Params.tags_include) (lt (len .Params.tags) 1) }} {{ $.Scratch.Set "show_post" "0" }} {{end}} {{/* If `tags_exclude` is set, exclude posts. */}} {{ range $key, $val := .Params.tags }} {{ if in $page.Params.tags_exclude $val }} {{ $.Scratch.Set "show_post" "0" }} {{end}} {{end}} {{ $show_post := $.Scratch.Get "show_post" }} {{ if ne $show_post "0" }} {{ $params := dict "post" . }} {{ if eq $page.Params.list_format 0 }} {{ partial "post_li_simple" $params }} {{ else }} {{ partial "post_li_detailed" $params }} {{ end }} {{end}} {{ end }} {{ else}} {{ $posts := where (where $.Site.RegularPages "Type" "post") ".Params.notonhomepage" nil }} {{ $.Scratch.Add "show_post" "1" }} {{ range $post := first $page.Params.count $posts }} {{ $.Scratch.Set "show_post" "1" }} {{/* If `tags_include` is set, exclude posts with no tags. */}} {{ if and ($page.Params.tags_include) (lt (len .Params.tags) 1) }} {{ $.Scratch.Set "show_post" "0" }} {{end}} {{/* If `tags_exclude` is set, exclude posts. */}} {{ range $key, $val := .Params.tags }} {{ if in $page.Params.tags_exclude $val }} {{ $.Scratch.Set "show_post" "0" }} {{end}} {{end}} {{ $show_post := $.Scratch.Get "show_post" }} {{ if ne $show_post "0" }} {{ $params := dict "post" . }} {{ if eq $page.Params.list_format 0 }} {{ partial "post_li_simple" $params }} {{ else }} {{ partial "post_li_detailed" $params }} {{ end }} {{end}} {{ end }} {{ end }}