Files
alexis.lahouze.org/layouts/_partials/breadcrumb.html
T

17 lines
470 B
HTML

<div class="cmdblock">
<nav aria-label="breadcrumb" class="breadcrumb">
<p aria-hidden="true" class="prompt">pwd</p>
<ol>
{{ range .Ancestors.Reverse }}
<li>
<a class="ancestor" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</li>
{{ end }}
<li class="active">
<a aria-current="page" href="">{{ .LinkTitle }}</a>
</li>
</ol>
</nav>
</div>
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}