9 lines
384 B
HTML
9 lines
384 B
HTML
{{- $name := .Get 1 -}}
|
|
{{- with getJSON (printf "https://api.github.com/users/%s" (.Get 0)) -}}
|
|
<a style="all:unset;cursor:pointer" href="{{ .html_url }}" title="{{ $name | default .name }}">
|
|
<img src="{{ .avatar_url }}" style="display:inline-block;height:2em;vertical-align:middle;border-radius:50%">
|
|
<b>{{ $name | default .name }}</b>
|
|
<i class="bi bi-github"></i>
|
|
</a>
|
|
{{- end -}}
|