{% if site.tags.size > 1 %}

All Tags

{% capture temptags %} {% for tag in site.tags %} {{ tag[1].size | plus: 1000 }}:{{ tag[0] }}{% unless forloop.last %},{% endunless %} {% endfor %} {% endcapture %} {% assign sortedtemptags = temptags | split:',' | sort | reverse %} {% for temptag in sortedtemptags %} {% assign tagitems = temptag | split: ':' %} {{ tagitems[1] | rstrip }}({{ tagitems[0] | to_integer | minus: 1000}}) {% endfor %}
{% endif %}