Created
July 7, 2016 09:36
-
-
Save ishu3101/611ec51ba0a6d40a8342db7f6f04ce66 to your computer and use it in GitHub Desktop.
Sort Public Repository on Github by the number of stars
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
{% if site.github.public_repositories %} | |
{% assign sorted_repositories = site.github.public_repositories | sort: 'stargazers_count' %} | |
{% for repository in sorted_repositories reversed %} | |
<h2><a href="{{ repository.html_url }}" target="_blank">{{ repository.name }}</a></h2> | |
<p>{{ repository.description }}</p> | |
{% endfor %} | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment