{{ $title := "" }} {{ $icon := "" }} {{ if .Params.Icon }} {{ $icon = printf "" .Params.Icon }} {{ end }} {{ if .LinkTitle }} {{ $title = .LinkTitle }} {{ else if .Title }} {{ $title = .Title }} {{ else if and .IsSection .File }} {{ $title = path.Base .File.Dir | humanize | title }} {{ else if and .IsPage .File }} {{ $title = .File.BaseFileName | humanize | title }} {{ end }} {{ $out := printf "%s %s" $icon $title | safeHTML }} {{ return $out }}