Files
hugo/layouts/partials/breadcrumb.html
T
2017-03-01 18:42:44 -06:00

13 lines
386 B
HTML

{{if and (ne .Kind "section") (ne .Section "")}}
<nav class="breadcrumb">
<ul class="breadcrumbs">
<li>
<a class="crumb" href="{{.Site.BaseURL}}{{.Section | urlize}}">
<!-- <img src="{{.Site.BaseURL}}images/hugo-icons/{{.Section | urlize}}.svg" alt=""> -->
<span>{{replace (replace .Section "-" " " | title) "And" "and"}}</span>
</a>
</li>
</ul>
</nav>
{{end}}