Skip to content

Instantly share code, notes, and snippets.

@jredh
Forked from budparr/hugo-breadcrumbs.html
Created January 26, 2018 02:59
Show Gist options
  • Save jredh/6ef7d49cc9a4d4646c871932f694a5e1 to your computer and use it in GitHub Desktop.
Save jredh/6ef7d49cc9a4d4646c871932f694a5e1 to your computer and use it in GitHub Desktop.
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
{{ $.Scratch.Add "path" .Site.BaseURL }}
<ol class="breadcrumbs">
<li><a href="/">home</a></li>
{{ range $index, $element := split $url "/" }}
{{ $.Scratch.Add "path" $element }}
{{ if ne $element "" }}
<li><a href='{{ $.Scratch.Get "path" }}'>{{ . }}</a></li>
{{ $.Scratch.Add "path" "/" }}
{{ end }}
{{ end }}
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment