diff options
| author | Francesco <tomaselli.fr@gmail.com> | 2024-05-11 22:48:26 +0200 | 
|---|---|---|
| committer | Francesco <tomaselli.fr@gmail.com> | 2024-05-11 22:48:26 +0200 | 
| commit | 1b40d37d7b35b6090a088ba049883dcf4c1e8dba (patch) | |
| tree | 40bf4111208f2bf8ee9a872fc80cd74476b6ba19 /layouts/partials/breadcrumbs.html | |
| parent | 43de5d69b894aec43f993743b2d03f4157952e15 (diff) | |
Breadcrumbs and tags
Diffstat (limited to 'layouts/partials/breadcrumbs.html')
| -rw-r--r-- | layouts/partials/breadcrumbs.html | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/layouts/partials/breadcrumbs.html b/layouts/partials/breadcrumbs.html index 9040d1f..30a4df1 100644 --- a/layouts/partials/breadcrumbs.html +++ b/layouts/partials/breadcrumbs.html @@ -1,8 +1,9 @@ +{{ if .Site.Params.breadcrumbs }}  <div class="breadcrumbs">      {{ range .Ancestors.Reverse }}      <a href="{{ .RelPermalink }}">{{ .Title }}</a>      <span class="breadcrumbs-separator"> > </span>      {{ end }} - -    <a href="{{ .RelPermalink }}">{{ .Title }}</a> -</div>
\ No newline at end of file +    <a class="breadcrumbs-current" href="{{ .RelPermalink }}">{{ .Title }}</a> +</div> +{{ end }}
\ No newline at end of file | 
