diff --git a/i18n/de.yaml b/i18n/de.yaml index b968dfc1..ce55888b 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -1,3 +1,6 @@ +paige_breadcrumb: + other: Brotkrümel + paige_collections: other: Sammlungen diff --git a/i18n/en.yaml b/i18n/en.yaml index c990d854..c23f3307 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -1,3 +1,6 @@ +paige_breadcrumb: + other: Breadcrumb + paige_collections: other: Collections diff --git a/layouts/partials/paige/breadcrumb.html b/layouts/partials/paige/breadcrumb.html new file mode 100644 index 00000000..a0beff7f --- /dev/null +++ b/layouts/partials/paige/breadcrumb.html @@ -0,0 +1,11 @@ +{{ $page := . }} + +{{ with .Ancestors }} + +{{ end }} diff --git a/layouts/partials/paige/header.html b/layouts/partials/paige/header.html index e1857fc0..b40669bf 100644 --- a/layouts/partials/paige/header.html +++ b/layouts/partials/paige/header.html @@ -14,6 +14,8 @@ {{ partial "paige/menu.html" $page }} {{ end }} + {{ partial "paige/breadcrumb.html" . }} + {{ if $last }} {{ partial "paige/header-last.html" $page }} {{ end }}