{{ if .Params.img }} {{ .Params.title }} {{ else if .Params.teaser }}
{{ .Params.teaser }}
{{ else if .Site.Params.defaultImage }} dummy {{ end }} {{ $site := .Site }} {{ with .Params.Topics }}

{{i18n "topics"}}

    {{ range . }} {{ $page := $site.GetPage (printf "/topics/%s" .) }}
  • {{ $page.Title }}
  • {{ end }}
{{ end }}

{{i18n "recentArticles"}}

    {{ $section := or .Section "posts" }} {{ range first 20 (where .Site.RegularPages "Section" $section) }}
  • {{ .Title }} {{ if .Date -}}   {{ .Date.Format (i18n "dateFormat") }} {{- end }}
  • {{ end }}