mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
17 lines
356 B
HTML
17 lines
356 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 }}
|
|
{{ $title = path.Base .File.Dir | humanize | title }}
|
|
{{ else if and .IsPage .File }}
|
|
{{ $title = .File.BaseFileName | humanize | title }}
|
|
{{ end }}
|
|
|
|
{{ return $title }}
|