mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
12 lines
269 B
HTML
12 lines
269 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 }}
|
||
|
|
||
|
{{ return $title }}
|