{{ $greeting:="Hi! I am" }} {{ if .Site.Params.author.greeting }} {{ $greeting = .Site.Params.author.greeting }} {{ end }} {{ $name:="Jane Doe" }} {{ if .Site.Params.author.nickname }} {{ $name = .Site.Params.author.nickname }} {{ else if .Site.Params.author.name }} {{ $name = .Site.Params.author.name }} {{ end }}

{{ $greeting }} {{ $name }}

{{ if .Site.Data.sections }} {{ range first 1 (where (sort .Site.Data.sections "section.weight") ".section.enable" true) }} {{ end }} {{ end }}