2020-02-12 22:12:41 +01:00
|
|
|
<!--
|
|
|
|
Partial to generate page name from Title or File name.
|
|
|
|
Accepts Page as context
|
|
|
|
-->
|
2019-07-16 16:36:40 +02:00
|
|
|
{{ $title := "" }}
|
|
|
|
|
|
|
|
{{ if .Title }}
|
|
|
|
{{ $title = .Title }}
|
|
|
|
{{ else if and .IsSection .File }}
|
2020-03-31 23:29:21 +02:00
|
|
|
{{ $title = path.Base .File.Dir | humanize | title }}
|
2019-07-15 18:25:21 +02:00
|
|
|
{{ else if and .IsPage .File }}
|
|
|
|
{{ $title = .File.BaseFileName | humanize | title }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ return $title }}
|