{{ define "main" }} {{ $articleType := .Params.type | default "life" }} {{ $template := printf "article-types/%s.html" $articleType }}
{{ partial "article-header.html" . }} {{ partial $template . }} {{ if .Params.tags }}

{{ i18n "tags" }}

{{ range .Params.tags }} {{ . }} {{ end }}
{{ end }}
{{ partial "sidebar.html" . }}
{{ end }}