{{ i18n "author" }}

{{ .Site.Params.author }}

{{ if and .Site.Params.relatedPosts (eq .Type "articles") }} {{ $related := first 5 (.Site.RegularPages.Related .) }}

{{ i18n "relatedPosts" }}

{{ if $related }}
    {{ range $related }} {{ $articleType := .Params.type | default "life" }} {{ $excerpt := .Description | default .Summary }}
  • {{ .Title }} ยท {{ .PublishDate.Format "Jan 2006" }} {{ if $excerpt }}

    {{ $excerpt | plainify | truncate 60 }}

    {{ end }}
  • {{ end }}
{{ else }}

{{ i18n "noRelated" }}

{{ end }}
{{ end }}