Skip to content

Instantly share code, notes, and snippets.

@jrfnl
Last active July 1, 2016 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrfnl/e5af95370fdb834ad7d696b4112c8d0c to your computer and use it in GitHub Desktop.
Save jrfnl/e5af95370fdb834ad7d696b4112c8d0c to your computer and use it in GitHub Desktop.
GitHub Pages Jekyll/Liquid snippet to display repo contributors.
<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