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

9 lines
355 B
HTML

{{- $contributors := getJSON
"https://api.github.com/repos/mtf-wiki/MtF-Wiki/contributors?per_page=100" }}
<section class="gh-contribuors">
{{- range where $contributors "type" "User" }}
{{- $avatar := resources.GetRemote .avatar_url -}}
<a href="{{ .html_url }}" title="{{ .login }}"><img src="{{ $avatar.Permalink }}"></a>
{{- end }}
</section>