{{ define "main" }}
{{ with .Site.Author.image }} {{ end }}

{{ .Params.title | default .Site.Author.name | default .Site.Title | emojify }}

{{ with .Content }}
{{ . | emojify }}
{{ end }}
{{ with .Site.Author.links }}
{{ range $links := . }} {{ range $name, $url := $links }}
{{ partial "icon.html" $name }}{{ i18n (printf "link.%s" $name) }}
{{ end }} {{ end }}
{{ end }}
{{ end }}