mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2025-02-18 10:36:44 +00:00
12 lines
396 B
HTML
12 lines
396 B
HTML
{{/*These templates contains some more complex logic and shared between partials*/}}
|
|
{{ define "title" }}
|
|
{{- if .Pages -}}
|
|
{{ $sections := split (trim .Dir "/") "/" }}
|
|
{{ $title := index ($sections | last 1) 0 | humanize | title }}
|
|
{{- default $title .Title -}}
|
|
{{- else -}}
|
|
{{ $title := .File | humanize | title }}
|
|
{{- default $title .Title -}}
|
|
{{- end -}}
|
|
{{ end }}
|