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

  {{ range .Params.tags }}

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

  {{ end }}
{{ end }}