12 lines
330 B
HTML
12 lines
330 B
HTML
{{ $title := "" }}
|
|
|
|
{{ if .Title }}
|
|
{{ $title = .Title }}
|
|
{{ else if and .IsSection .File }}
|
|
{{ $sections := split (trim .File.Dir "/") "/" }}
|
|
{{ $title = index ($sections | last 1) 0 | humanize }}
|
|
{{ else if and .IsPage .File }}
|
|
{{ $title = .File.BaseFileName | humanize | title }}
|
|
{{ end }}
|
|
|
|
{{ return $title }}
|