From 5affd26bfb4e692ffe468f411fb83deb64dd6495 Mon Sep 17 00:00:00 2001 From: Bjørn Erik Pedersen Date: Tue, 16 Apr 2019 08:23:25 +0200 Subject: Adjust .File usage to get rid of WARNINGs Note that this requires this fix in Hugo 0.55.2: https://github.com/gohugoio/hugo/issues/5865 --- layouts/partials/docs/shared.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layouts/partials/docs/shared.html') diff --git a/layouts/partials/docs/shared.html b/layouts/partials/docs/shared.html index ec303f5..3fbf628 100644 --- a/layouts/partials/docs/shared.html +++ b/layouts/partials/docs/shared.html @@ -1,10 +1,10 @@ {{/*These templates contains some more complex logic and shared between partials*/}} {{- define "title" -}} - {{- if .Pages -}} - {{ $sections := split (trim .Dir "/") "/" }} + {{- if and .File .Pages -}} + {{ $sections := split (trim .File.Dir "/") "/" }} {{ $title := index ($sections | last 1) 0 | humanize | title }} {{- default $title .Title -}} - {{- else -}} + {{- else if .File -}} {{ $title := .File | humanize | title }} {{- default $title .Title -}} {{- end -}} -- cgit v1.2.3