{{ $articleType := .Params.type | default "life" }} {{ $typeConfig := .Site.Params.articleTypes }} {{ $typeData := index $typeConfig $articleType }} {{ $excerpt := .Description | default .Summary }} {{ $imageURL := "" }} {{ if .Params.image }} {{ $resource := .Resources.GetMatch .Params.image }} {{ if $resource }} {{ $imageURL = $resource.RelPermalink }} {{ else }} {{ $imageURL = .Params.image }} {{ end }} {{ end }}
{{ if $imageURL }} {{ .Title }} {{ if $typeData }}
{{ i18n $articleType }}
{{ end }}
{{ end }}
{{ if .Params.pinned }}
📌 PINNED
{{ end }}

{{ .Title }}

{{ if $excerpt }}

{{ $excerpt | plainify }}

{{ end }} {{ i18n "readMore" }}