summaryrefslogtreecommitdiff
path: root/layouts/partials/docs/title.html
blob: ffe858aca3a2080fac8acb6574c208da02774ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- 
  Partial to generate page name from Title or File name.
  Accepts Page as context
-->
{{ $title := "" }}

{{ if .Title }}
  {{ $title = .Title }}
{{ else if and .IsSection .File }}
  {{ $sections := split (trim .File.Dir "/") "/" }}
  {{ $title = index ($sections | last 1) 0 | humanize | title }}
{{ else if and .IsPage .File }}
  {{ $title = .File.BaseFileName | humanize | title }}
{{ end }}

{{ return $title }}