{{ $title := "" }} {{ 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 }} {{ if .Params.icon }} {{ $title = printf "%s  %s" .Params.icon $title }} {{ end }} {{ if .Params.bold }} {{ $title = printf `
%s
` $title }} {{ end }} {{ return ($title | safeHTML) }}