17 lines
550 B
HTML
17 lines
550 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 }}" title="{{ .Title }}">{{ .LinkTitle }}</a>
|
|
</li>
|
|
{{ end }}
|
|
<li class="active {{ cond .IsNode "directory" "file" }}">
|
|
<a aria-current="page" href="" title="{{ .Title }}">{{ .LinkTitle }}</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
{{/* vim: set tw=80 ts=2 sw=2 sts=2 ft=gohtmltmpl: */}}
|