{{ $site_Pages := .Site.Pages }} {{ $participants := where .Site.Pages ".Params.type" "participant" }} {{ if isset .Params "sessions" }}

{{.Params.title}} Schedule

{{ range .Params.sessions}} {{ $matches := (where $site_Pages ".Params.title" .) }} {{ range $page :=$matches }} {{ if ne .Params.type "outcome" }} {{ $.Scratch.Add "pages" (slice $page) }} {{ end }} {{ end }} {{ end }} {{ $pages := $.Scratch.Get "pages"}} {{ partial "schedule/table.html" (dict "self" . "pages" $pages ) }} {{ end}} {{ $.Scratch.Delete "pages" }}