Files
Protocol-oral-history-project/layouts/partials/topics.html

10 lines
258 B
HTML

{{- if .Params.topics }}
<div class="tag-cloud flex flex-wrap gap-2 my-2 text-xs font-iosevka">
{{- range .Params.topics }}
<a href="{{ "topics/" | relURL }}{{ . | urlize }}"
class="tag no-underline">
{{ . }}
</a>
{{- end }}
</div>
{{- end }}