mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
17 lines
423 B
HTML
17 lines
423 B
HTML
<!--
|
|
Partial to generate page name from Title or File name.
|
|
Accepts Page as context
|
|
-->
|
|
{{ $title := "" }}
|
|
|
|
{{ if .Title }}
|
|
{{ $title = .Title }}
|
|
{{ else if and .IsSection .File }}
|
|
{{ $sections := split (trim .File.Dir "/") "/" }}
|
|
{{ $title = index ($sections | last 1) 0 | humanize | title }}
|
|
{{ else if and .IsPage .File }}
|
|
{{ $title = .File.BaseFileName | humanize | title }}
|
|
{{ end }}
|
|
|
|
{{ return $title }}
|