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

tags.html « partials « layouts - github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da6bc1424ce827c0946ce632e381480701d134fe (plain)
1
2
3
4
5
6
7
8
9
<ul class="pa0 tags">
  {{ range .Params.tags }}
   <li class="list">
     <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="link f5 grow no-underline br-pill ba ph3 pv2 mb2 dib black sans-serif">
       {{- . -}}
     </a>
   </li>
  {{ end }}
</ul>