Skip to content

Instantly share code, notes, and snippets.

@niklasvincent
Created July 30, 2015 13:27
Show Gist options
  • Save niklasvincent/b9e48c409d49963b13d6 to your computer and use it in GitHub Desktop.
Save niklasvincent/b9e48c409d49963b13d6 to your computer and use it in GitHub Desktop.
Public Github repositories sorted by number of watchers
{% if site.github.public_repositories %}
{% assign sorted_repositories = site.github.public_repositories | sort: 'watchers_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