From c78c67ffeda5948d701566fb21fffbd8cccdbfb2 Mon Sep 17 00:00:00 2001 From: Alex Shpak Date: Tue, 16 Jul 2019 16:36:40 +0200 Subject: Fix title partial, frontmatter title was ignored --- layouts/partials/docs/title.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'layouts/partials/docs/title.html') diff --git a/layouts/partials/docs/title.html b/layouts/partials/docs/title.html index 91d5f81..f32e8da 100644 --- a/layouts/partials/docs/title.html +++ b/layouts/partials/docs/title.html @@ -1,5 +1,8 @@ -{{ $title := .Title }} -{{ if and .IsSection .File }} +{{ $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 }} -- cgit v1.2.3