--- title: Tags icon: fas fa-tags order: 2 # All the Tags of posts. # v2.0 # https://github.com/cotes2020/jekyll-theme-chirpy # © 2017-2019 Cotes Chung # MIT License --- {% 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 %}
{{ t }}{{ site.tags[t].size }}
{% endfor %}