{{ define "main" }} {{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }}
{{ with .Site.Params.Author.image }} {{ $authorImage := "" }} {{ if or (strings.HasPrefix . "http:") (strings.HasPrefix . "https:") }} {{ $authorImage = resources.GetRemote . }} {{ else }} {{ $authorImage = resources.Get . }} {{ end }} {{ if $authorImage }} {{ if not $disableImageOptimization }} {{ $authorImage = $authorImage.Fill "192x192" }} {{ end }} {{ $.Site.Params.Author.name | default {{ else }} {{ $authorImage := resources.GetRemote . }} {{ if not $disableImageOptimization }} {{ $authorImage = $authorImage.Fill "192x192" }} {{ end }} {{ $.Site.Params.Author.name | default {{ end }} {{ end }} {{ with .Site.Params.Author.name | markdownify }}
{{ . }}
{{ end }}

{{ .Title | emojify }}

{{ partial "linktree-list.html" . }}
{{ end }}