2021-12-12 15:01:03 +08:00
|
|
|
{{- $name := .Get 1 -}}
|
|
|
|
{{- with getJSON (printf "https://api.github.com/users/%s" (.Get 0)) -}}
|
2021-12-12 18:25:00 +08:00
|
|
|
<a style="all:unset;cursor:pointer" href="{{ .html_url }}" title="{{ $name | default .name }}">
|
2021-12-12 18:22:27 +08:00
|
|
|
<img src="{{ .avatar_url }}" style="display:inline-block;height:2em;vertical-align:middle;border-radius:50%">
|
2021-12-12 15:03:45 +08:00
|
|
|
<b>{{ $name | default .name }}</b>
|
2021-12-12 15:01:03 +08:00
|
|
|
<i class="bi bi-github"></i>
|
|
|
|
</a>
|
|
|
|
{{- end -}}
|