22 lines
602 B
HTML
22 lines
602 B
HTML
<!--
|
|
Partial to generate page name from Title or File name.
|
|
Accepts Page as context
|
|
-->
|
|
{{ $title := "" }}
|
|
{{ $icon := "" }}
|
|
|
|
{{ if .Params.Icon }}
|
|
{{ $icon = printf "<img src=\"%s\" class=\"book-filetree-icon\" />" .Params.Icon }}
|
|
{{ end }}
|
|
{{ if .LinkTitle }}
|
|
{{ $title = .LinkTitle }}
|
|
{{ else 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 }}
|
|
|
|
{{ $out := printf "%s %s" $icon $title | safeHTML }}
|
|
{{ return $out }}
|