{{ if .Params.img }}

{{ else }}

{{ end }}
{{ $taxo := "categories" }}
{{ if .Param $taxo }}
{{i18n "categories"}}
{{ range .Param $taxo }}
{{ $name := . }}
{{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | urlize)) }}
- {{ $name }}
{{ end }}
{{ end }}
{{ end }}
{{i18n "recentArticles"}}
{{ range first 3 (where .Site.RegularPages "Section" "posts") }}
-
{{ .Title }} {{ .Date.Format (i18n "dateFormat") }}
{{ end }}