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

tags.html « page « modules « partials « layouts - github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43a3ccf0119551fdd215bcfda7777d62bb8a4b44 (plain)
1
2
3
4
5
6
{{ if isset .Params "tags"}}
  <i class="fa fa-tags"></i>
  {{ range .Params.tags }}
  <a href="{{ "/tags/" | absURL }}{{ . | urlize }}" class="label label-primary">{{ . }}</a>
  {{ end }}
{{ end }}