Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 486 Bytes

Tags.md

File metadata and controls

21 lines (19 loc) · 486 Bytes
title layout
Tags
page

{% 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] }}{{ i }}
  • {% endif %} {%- endfor -%} {%- endfor -%}