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

tags.html « partials « layouts - github.com/alexandrevicenzi/soho.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b209ebe20b4f0fd6a4818a80f797d7880f0a3db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ if isset .Params "tags" }}
<div>
  <ul class="tags">
  {{- range $tag := $.Params.tags -}}
  {{- with $.Site.GetPage "tags" -}}
  {{- with .GetPage $tag }}
  <li>
    <a href="{{ .Permalink }}" class="tag-link">{{ .Title }}</a>
  </li>
  {{ end -}}
  {{- end -}}
  {{- end -}}
  </ul>
</div>
{{ end }}