2024-06-02 06:01:06 -04:00
|
|
|
{{- if (default true .Params.breadcrumbs) }}
|
2025-03-29 12:51:42 +00:00
|
|
|
<div class="hx:mt-1.5 hx:flex hx:items-center hx:gap-1 hx:overflow-hidden hx:text-sm hx:text-gray-500 hx:dark:text-gray-400 hx:contrast-more:text-current">
|
2024-06-02 06:01:06 -04:00
|
|
|
{{- range .Ancestors.Reverse }}
|
|
|
|
{{- if not .IsHome }}
|
2025-03-29 12:51:42 +00:00
|
|
|
<div class="hx:whitespace-nowrap hx:transition-colors hx:min-w-[24px] hx:overflow-hidden hx:text-ellipsis hx:hover:text-gray-900 hx:dark:hover:text-gray-100">
|
2024-06-02 06:01:06 -04:00
|
|
|
<a href="{{ .RelPermalink }}">{{- partial "utils/title" . -}}</a>
|
|
|
|
</div>
|
2025-03-29 12:51:42 +00:00
|
|
|
{{- partial "utils/icon.html" (dict "name" "chevron-right" "attributes" "class=\"hx:w-3.5 hx:shrink-0 hx:rtl:-rotate-180\"") -}}
|
2024-06-02 06:01:06 -04:00
|
|
|
{{ end -}}
|
2023-08-27 17:32:44 +01:00
|
|
|
{{ end -}}
|
2025-03-29 12:51:42 +00:00
|
|
|
<div class="hx:whitespace-nowrap hx:transition-colors hx:font-medium hx:text-gray-700 hx:contrast-more:font-bold hx:contrast-more:text-current hx:dark:text-gray-100 hx:contrast-more:dark:text-current">
|
2024-06-02 06:01:06 -04:00
|
|
|
{{- partial "utils/title" . -}}
|
|
|
|
</div>
|
2023-07-27 00:05:47 +01:00
|
|
|
</div>
|
2024-06-02 06:01:06 -04:00
|
|
|
{{ end -}}
|