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

{{ return $title }}