You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
356 B
15 lines
356 B
{{ $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 }} |
|
|
|
{{ if eq .Kind "term" }} |
|
{{ $title = $title | humanize | title }} |
|
{{ end }} |
|
|
|
{{ return $title }}
|
|
|