hugo-theme-stack/layouts/partials/article/components/categories.html
2021-05-19 23:05:21 +08:00

9 lines
346 B
HTML

{{ if .Params.categories }}
<section class="article-category">
{{ range (.GetTerms "categories") }}
<a href="{{ .RelPermalink }}" {{ with .Params.style }}style="background-color: {{ .background }}; color: {{ .color }};"{{ end }}>
{{ .LinkTitle }}
</a>
{{ end }}
</section>
{{ end }}