Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 766 Bytes

File metadata and controls

29 lines (24 loc) · 766 Bytes
title Tags

{% comment %} 'site.tags' looks like a Map, e.g. site.tags.MyTag.[ Post0, Post1, ... ] Print the {{ site.tags }} will help you to understand it. {% endcomment %}

{% assign tags = "" | split: "" %} {% for t in site.tags %} {% assign tags = tags | push: t[0] %} {% endfor %}

{% assign sorted_tags = tags | sort_natural %}

{% for t in sorted_tags %}

{% endfor %}