aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/edwin/layouts/partials/post-tags.html
blob: ade21b49d4a6606b5b67541df176d5f1fa6d1d93 (plain)
1
2
3
4
5
6
7
8
9
{{ if .Params.tags }}

  {{ range .Params.tags }}

  <a class="rounded bg-red-700 px-2 py-1 text-xs font-bold text-white no-underline" 
  href="{{ "/tags/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>

  {{ end }}
{{ end }}