{{ define "main" }}
Portrait
{{- with .Param "greeting" -}}

{{ . }}

{{- else -}}

{{ i18n "hello" }}.

{{- end -}}

{{ i18n "i-am" }} {{ .Site.Author.name | default "Hallo" }}.

{{- partial "introduction.html" . -}}

{{- if (fileExists "layouts/partials/content.html") -}}
{{- partial "content.html" . -}}
{{- end -}}
{{ end }}