Welcome to mirror list, hosted at ThFree Co, Russian Federation.

breadcrumbs.html « partials « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6c9b4c1d085a63c2c4389945d078a8ef45f094a (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="breadcrumbs">
    <a href="{{ .Site.Home.RelPermalink }}">{{ T "home" }} </a>
    {{- with $.Params.categories -}}
    {{- $category := index . 0 -}}
    {{- with $category -}}
    {{- $category = partialCached "function/path.html" . . | printf "/categories/%v" | $.Site.GetPage -}}
    / <a href="{{ $category.RelPermalink }}">{{ $category.Title }} </a>
    {{- end -}}
    {{- end -}}
    / <a href="/"> {{ .Title }} </a>
</div>