summaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-04-16 08:23:25 +0200
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-04-16 11:53:36 +0200
commit5affd26bfb4e692ffe468f411fb83deb64dd6495 (patch)
tree2a93d3df13734f7bde1bda7fdc1e9f36f6974785 /layouts/partials
parent4054b1b520ae53328027ca477e1a9abc1733a11a (diff)
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
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/docs/git-footer.html4
-rw-r--r--layouts/partials/docs/shared.html6
2 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/docs/git-footer.html b/layouts/partials/docs/git-footer.html
index 4a856d3..4b2f44d 100644
--- a/layouts/partials/docs/git-footer.html
+++ b/layouts/partials/docs/git-footer.html
@@ -10,9 +10,9 @@
{{ end }}
{{ with .Site.Params.BookEditPath }}
<div>
- <a href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener">
+ {{ if $.File }}<a href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener">
<img src="{{ "svg/code-fork.svg" | relURL }}" /> Edit this page
- </a>
+ </a>{{ end }}
</div>
{{ end }}
</div>
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 -}}