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

sidebar-no-about.html « partials « layouts - github.com/mattbutton/silhouette-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e911cdae186d3e3f8da137586450aaa11345110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="sidebar d-print-none d-none d-xl-block">
    <h2>Top Posts</h2>
    {{ range .Site.Taxonomies.tags.featured }}
        <a href="{{ .Permalink }}" class="nav-link">{{ .Title }}</a>
    {{ end }}
    <h2 class="mt-4">Recent Posts</h2>
    <nav class="nav flex-column">
        {{ range first 8 .Site.Pages }}{{ if (eq .Section "post") }}
        <a href="{{ .Permalink }}" class="nav-link">{{ .Title }}</a>
        {{ end }}{{ end }}
    </nav>
    {{ range $key, $value := .Site.Taxonomies }}
    <h2 class="mt-4 text-capitalize">{{ $key }}</h2>
    <nav class="nav flex-column">
        {{ range first 10 $value.ByCount }}
        <a href='{{ $.Site.BaseURL}}{{ $key }}/{{ (replace .Name "#" "%23") | urlize }}/' class="nav-link">
        {{ .Name }}
        <span class="badge badge-pill badge-secondary">{{ .Count }}</span>
        </a>
        {{ end }}
    </nav>
    {{ end }}
</div>