Skip to content

Instantly share code, notes, and snippets.

@thieu1995
Created July 1, 2020 09:05
Show Gist options
  • Save thieu1995/efd3c0625168bbf90bd76c2d70762e9b to your computer and use it in GitHub Desktop.
Save thieu1995/efd3c0625168bbf90bd76c2d70762e9b to your computer and use it in GitHub Desktop.
Determine the top contributors in your Jekyll website.
<ul>
{% for category in site.categories %}
{% assign category_name = category[0] %}
<li>
<a href="/blog/categories/{{ category_name | slugify }}/">
{{ category_name | capitalize | replace: "-", " " }}:
<span class="badge badge-light">{{site.categories[category_name].size}} articles
</span>
</a>
</li>
{% endfor %}
</ul>
<div class="contributors_block">
{% assign top_authors = site.posts | group_by: 'author' |sort: 'size' | limit: 5 %}
<ul>
{% for author in top_authors %}
<li id="contributor_id{{forloop.index}}">
<a href="/blog/{{author.name}}">{{author.name}}</a>
<p class="badge badge-light">{{author.size}}</p>
</li>
{% endfor %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment