Last active
July 1, 2016 18:01
-
-
Save jrfnl/e5af95370fdb834ad7d696b4112c8d0c to your computer and use it in GitHub Desktop.
GitHub Pages Jekyll/Liquid snippet to display repo contributors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="contributors"> | |
{% for contributor in site.github.contributors %} | |
[![Avatar]({{ contributor.avatar_url }}){: style="width: 30px;"}]({{ contributor.html_url }}) [@{{ contributor.login }}]({{ contributor.html_url }}) | |
{: .contributor } | |
{% else %} | |
This project would not be possible without the help of [our amazing contributors] on GitHub. | |
{% endfor %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment