Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pjbakker/flexible-seo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul <paul@brainspark.nl>2020-03-10 22:56:03 +0300
committerPaul <paul@brainspark.nl>2020-03-10 22:56:03 +0300
commitba3196c60a8ea89cef35ba5e5ecd3166a20f1b64 (patch)
treecc2e71f236df2d0660dc553d1c28a9b69efb478c
parent74d27990cb1f4d5b4f98cc0dd1d15009068fc311 (diff)
Fix typo in breadcrumbs code
-rw-r--r--layouts/partials/breadcrumbs/recursive.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/breadcrumbs/recursive.html b/layouts/partials/breadcrumbs/recursive.html
index 3a9c59b..b2602cf 100644
--- a/layouts/partials/breadcrumbs/recursive.html
+++ b/layouts/partials/breadcrumbs/recursive.html
@@ -15,7 +15,7 @@
{{ $full_data = printf "%s%s" $full_data $data }}
{{- if gt (len .Sections) 0 }}
- {{- $data := partial "breadcrumbs_recursive.html" ( dict "output_type" $output_type "sections" .Sections "level" (add $level 1) "path" $path "dir" $dir ) }}
+ {{- $data := partial "breadcrumbs/recursive.html" ( dict "output_type" $output_type "sections" .Sections "level" (add $level 1) "path" $path "dir" $dir ) }}
{{ $full_data = printf "%s%s" $full_data $data }}
{{- end }}
{{- end }}