10 lines
381 B
HTML
10 lines
381 B
HTML
|
<!-- authors taxonomy not (yet?) part of theme, manually hacked in lol -->
|
||
|
<div class="authors">
|
||
|
<i class="fa fa-user" aria-hidden="true"></i>
|
||
|
{{- range $index, $el := . -}}
|
||
|
{{- if gt $index 0 }}
|
||
|
<span class="separator">•</span>
|
||
|
{{- end }}
|
||
|
<a href="{{ ( printf "authors/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||
|
{{- end -}}
|
||
|
</div>
|