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

sidebar.html « partials « layouts - github.com/mazgi/hugo-theme-techlog-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a36fa696bf68da3fd9870a5ae366ab43646213e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="sidebar">
  {{ with ( .Site.GetPage "page" "about" ) }}
  <h4><a href="{{ .RelPermalink }}">{{ .Title }}</a></h4>
  {{ .Summary }}
  {{ end }}
  <hr />
  <h4>TableOfContents</h4>
  {{ .TableOfContents }}
  <hr />
  <h4><a href="{{ "/categories/" | relLangURL }}">Categories</a></h4>
  {{ with .Params.Categories }}
  <div>
    <ul>
      {{ range . }}
      <li>
        <a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
      </li>
      {{ end }}
    </ul>
  </div>
  {{ end }}
  <hr />
  <h4><a href="{{ "/tags/" | relLangURL }}">Tags</a></h4>
  {{ with .Params.Tags }}
  <div>
    {{ range . }}
    <a class="badge badge-pill badge-secondary" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
    {{ end }}
  </div>
  {{ end }}
</div>