mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-02 02:10:27 +00:00
17 lines
430 B
HTML
17 lines
430 B
HTML
{{ $styles := resources.Get "css/partials/breadcrumb.css" | toCSS | minify }}
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" />
|
|
|
|
<nav aria-label="breadcrumb" class="breadcrumb">
|
|
<ol>
|
|
{{ range .Ancestors.Reverse }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
<li class="active">
|
|
<a aria-current="page" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|