Update breadcrumbs.html

Mainly changes the existing formatting to be closer to upstream's to
have a smaller diff.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
Kévin Commaille 2026-01-07 13:31:50 +01:00
parent 93835adcca
commit 58c2cba225
No known key found for this signature in database
GPG key ID: F26F4BE20A08255B

View file

@ -1,28 +1,35 @@
{{/* {{/*
A copy of the breadcrumb.html partial in Docsy, modified A copy of the breadcrumb.html partial in Docsy, modified to:
to:
* show the breadcrumbs by default by removing the `td-breadcrumbs__single`
class
* omit breadcrumbs when this is the homepage * omit breadcrumbs when this is the homepage
* otherwise, include the homepage in the breadcrumbs * otherwise, include the homepage in the breadcrumbs
*/}} */}}
{{ if not .IsHome }} {{ if not .IsHome -}}
<nav aria-label="breadcrumb" class="td-breadcrumbs"> <nav aria-label="breadcrumb" class="td-breadcrumbs">
<ol class="breadcrumb"> <ol class="breadcrumb">
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }} {{- template "breadcrumbnav" (dict "p1" . "p2" .) }}
</ol> </ol>
</nav > </nav>
{{ end }} {{ end -}}
{{ define "breadcrumbnav" }} {{- define "breadcrumbnav" -}}
{{ if .p1.Parent }} {{ if .p1.Parent -}}
{{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }} {{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) -}}
{{ else if not .p1.IsHome }} {{ else if not .p1.IsHome -}}
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }} {{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) -}}
{{ end }} {{ end -}}
{{ $isActive := eq .p1 .p2 }} {{ $isActive := eq .p1 .p2 }}
<li class="breadcrumb-item{{ if $isActive }} active{{ end }}" {{ if $isActive }}aria-current="page"{{ end }}> <li class="breadcrumb-item{{ if $isActive }} active{{ end }}"
<a href="{{ .p1.RelPermalink }}">{{ .p1.LinkTitle }}</a> {{- if $isActive }}aria-current="page"{{ end }}>
</li> {{ if $isActive -}}
{{ end }} {{ .p1.LinkTitle -}}
{{ else -}}
<a href="{{ .p1.RelPermalink }}">{{ .p1.LinkTitle }}</a>
{{- end -}}
</li>
{{- end -}}