Files
hugoDocs/layouts/partials/breadcrumb.html
T

12 lines
275 B
HTML

{{if and (ne .Kind "section") (ne .Section "")}}
<nav class="breadcrumb">
<ul class="breadcrumbs">
<li>
<a class="crumb" href="/{{.Section | urlize}}">
<span>{{replace (replace .Section "-" " " | title) "And" "and"}}</span>
</a>
</li>
</ul>
</nav>
{{end}}