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

8 lines
296 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" }}
<a href="{{ .html_url }}" title="{{ .login }}"><img src="{{ .avatar_url }}"></a>
{{- end }}
</section>