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

  <strong>{{ i18n "categories" }}:</strong>
  {{ range .Params.categories }}
  
  <a class="rounded-full bg-indigo px-2 py-1 text-xs font-bold text-white no-underline" 
  href="{{ "/categories/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
  {{ end }}
{{ end }}