mirror of https://github.com/jpanther/congo.git
17 lines
461 B
HTML
17 lines
461 B
HTML
{{ with .Site.Author.links }}
|
|
<div class="flex flex-wrap text-gray-400 dark:text-gray-500">
|
|
{{ range $links := . }}
|
|
{{ range $name, $url := $links }}
|
|
<a
|
|
class="px-1 hover:text-primary-700 dark:hover:text-primary-400"
|
|
href="{{ $url }}"
|
|
target="_blank"
|
|
alt="{{ $name | title }}"
|
|
rel="me"
|
|
>{{ partial "icon.html" $name }}</a
|
|
>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|