MtF-wiki/layouts/shortcodes/gh-profile.html

9 lines
386 B
HTML
Raw Normal View History

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 16:06:36 +08:00
<a style="color:unset;text-decoration:none" href="{{ .html_url }}" title="{{ $name | default .name }}">
2021-12-12 15:01:03 +08:00
<img src="{{ .avatar_url }}" style="display:inline;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 -}}