blob: 366d8d8e42df4f24505fbcccfc77fbae0f50cecf (
plain)
1
2
3
4
5
6
7
8
9
|
<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>
|