aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/docs/shared.html
blob: f7ba182963273749d5232b09dd33441b5347f494 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!-- 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 }}