From b93c8379e2a48ffd3aa480b62cdb14ef426e3dc0 Mon Sep 17 00:00:00 2001 From: Abdon Pijpelink Date: Wed, 22 Apr 2026 09:16:27 +0200 Subject: [PATCH] Use section _index.md titles in docs breadcrumbs instead of humanized URL slugs (#2290) Co-authored-by: Claude Sonnet 4.6 --- qdrant-landing/content/documentation/_index.md | 2 +- .../layouts/partials/documentation/breadcrumbs.html | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/qdrant-landing/content/documentation/_index.md b/qdrant-landing/content/documentation/_index.md index 2515ad7e9..dcd6b7e18 100644 --- a/qdrant-landing/content/documentation/_index.md +++ b/qdrant-landing/content/documentation/_index.md @@ -1,5 +1,5 @@ --- -title: Home +title: Documentation weight: 2 hideTOC: true breadcrumb: false diff --git a/qdrant-landing/themes/qdrant-2024/layouts/partials/documentation/breadcrumbs.html b/qdrant-landing/themes/qdrant-2024/layouts/partials/documentation/breadcrumbs.html index bc3f87ee7..684fdcc6d 100644 --- a/qdrant-landing/themes/qdrant-2024/layouts/partials/documentation/breadcrumbs.html +++ b/qdrant-landing/themes/qdrant-2024/layouts/partials/documentation/breadcrumbs.html @@ -5,7 +5,9 @@ {{ range first $len $paths }} {{ if gt (len . ) 0 }} {{ $rellink = printf "%s/%s" $rellink . }} -
  • {{ humanize . }}
  • + {{ $section := $.Site.GetPage $rellink }} + {{ $label := cond (ne $section nil) $section.Title (humanize .) }} +
  • {{ $label }}
  • {{ end }} {{ end }}