Created
July 1, 2020 09:05
-
-
Save thieu1995/efd3c0625168bbf90bd76c2d70762e9b to your computer and use it in GitHub Desktop.
Determine the top contributors in your Jekyll website.
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
<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> |
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_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