mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2025-04-28 14:07:48 +02:00
Fix: Complete rework of the breadcrumb
This commit is contained in:
parent
4b88f2c7cd
commit
9486d2e8c6
2 changed files with 7 additions and 17 deletions
|
@ -1,25 +1,14 @@
|
|||
{{ if site.Params.breadcrumbs }}
|
||||
{{"<!-- Bradcrumb Section -->" | safeHTML}}
|
||||
{{ $siteUrl := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
|
||||
{{ $.Scratch.Add "sitePath" .Site.BaseURL }}
|
||||
|
||||
{{ $.Scratch.Add "siteBreadcrumbs" (slice (dict "url" .Site.BaseURL "name" "home" "position" 1 )) }}
|
||||
{{ range $index, $element := split $siteUrl "/" }}
|
||||
{{ $.Scratch.Add "sitePath" $element }}
|
||||
{{ $.Scratch.Add "sitePath" "/" }}
|
||||
{{ if ne $element "" }}
|
||||
{{ $.Scratch.Add "siteBreadcrumbs" (slice (dict "url" ($.Scratch.Get "sitePath") "name" . "position" (add $index 2))) }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container-fluid">
|
||||
<nav aria-label="breadcrumb">
|
||||
<!-- <p> You are hear ↓↓↓</p> -->
|
||||
<ol class="breadcrumb">
|
||||
{{ range $.Scratch.Get "siteBreadcrumbs" }}
|
||||
<li class="breadcrumb-item"><a href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
{{- range .Ancestors.Reverse }}
|
||||
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||
{{- end }}
|
||||
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue