Skip to content

Instantly share code, notes, and snippets.

@matallo
Created June 25, 2014 13:24
Show Gist options
  • Save matallo/939bdfb1a47820baaeb0 to your computer and use it in GitHub Desktop.
Save matallo/939bdfb1a47820baaeb0 to your computer and use it in GitHub Desktop.

{% assign tags_max = 0 %} {% for tag in site.tags %} {% if tag[1].size > tags_max %} {% assign tags_max = tag[1].size %} {% endif %} {% endfor %}

    {% for i in (1..tags_max) reversed %} {% for tag in site.tags %} {% if tag[1].size == i %} {{ tag[0] }} {{ tag[1].size }} {% endif %} {% endfor %} {% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment