{{ $ := .root }} {{ $page := .page }} {{ $count := len (where $.Site.RegularPages "Type" "talk") }}
{{ . | markdownify }}
{{ end }}{{ . | markdownify }}
{{ end }} {{ $talks := where $.Site.RegularPages "Type" "talk" }} {{/* Exclude talks shown in Featured Talks widget? */}} {{ if $page.Params.exclude_featured }} {{ $talks = (where $talks ".Params.featured" "!=" true) }} {{ end }} {{ range first $page.Params.count (sort $talks ".Params.time_start" "desc") }} {{ if eq $page.Params.view 1 }} {{ partial "talk_li_list" . }} {{ else if eq $page.Params.view 3 }} {{ partial "talk_li_card" . }} {{ else }} {{ partial "talk_li_compact" . }} {{ end }} {{ end }} {{ if gt $count $page.Params.count }} {{ end }}