mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-02 11:42:37 +00:00
13 lines
386 B
HTML
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}}
|