mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
16 lines
348 B
HTML
16 lines
348 B
HTML
{{ $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 eq .Kind "term" }}
|
|
{{ $title = $title | humanize | title }}
|
|
{{ end }}
|
|
|
|
{{ return $title }}
|