Skip to content

Instantly share code, notes, and snippets.

@ishu3101
Created July 7, 2016 09:36
Show Gist options
  • Save ishu3101/611ec51ba0a6d40a8342db7f6f04ce66 to your computer and use it in GitHub Desktop.
Save ishu3101/611ec51ba0a6d40a8342db7f6f04ce66 to your computer and use it in GitHub Desktop.
Sort Public Repository on Github by the number of stars
{% 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