diff options
Diffstat (limited to 'themes/hugo-book/layouts/partials/docs/title.html')
| -rw-r--r-- | themes/hugo-book/layouts/partials/docs/title.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/partials/docs/title.html b/themes/hugo-book/layouts/partials/docs/title.html new file mode 100644 index 0000000..83df5b6 --- /dev/null +++ b/themes/hugo-book/layouts/partials/docs/title.html @@ -0,0 +1,17 @@ +<!-- + Partial to generate page name from Title or File name. + Accepts Page as context +--> +{{ $title := "" }} + +{{ if .LinkTitle }} + {{ $title = .LinkTitle }} +{{ else 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 }} |
