hugo-book-theme/layouts/partials/docs/shared.html
2019-02-12 15:44:36 +01:00

11 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 }}