{{ define "main" }} {{ with .Params.banner }}

{{ .title | markdownify }}

{{ .content | markdownify }}

{{ with .button }} {{ if .enable }} {{ .label }} {{ end }} {{ end }}
{{ partial "image" (dict "Src" .image "Alt" "Banner image" "Loading" "eager" "Class" "mx-auto lg:!max-w-[800px]" "DisplayXL" "800x" ) }}
{{ end }} {{ range $i, $e:= .Params.features }}
{{ partial "image" (dict "Src" .image "Alt" .image_alt "Class" "mx-auto" "DisplayXL" "520x" "DisplayLG" "425x" "DisplayMD" "360x") }}

{{ .title | markdownify }}

{{ .content | markdownify }}

    {{ range .bulletpoints }}
  • {{ . | markdownify }}
  • {{ end }}
{{ with .button }} {{ if .enable }} {{ .label }} {{ end }} {{ end }}
{{ end }} {{ $pageAgenda := where $.Site.Pages "Section" "agenda"}}

Agenda

{{ range first 4 ($e:= $pageAgenda.ByExpiryDate) }} {{ if ne .Kind "section" }}
{{ partial "components/event-card-mini" . }}
{{ end }} {{ end }}
{{ end }}