layout | title |
---|---|
default |
Stochastic stuff blog's tags. List of articles and posts by tags. |
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign tag_words = site_tags | split:',' | sort %}
-
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] }}{% endcapture %}
- {{ this_word }} ({{ site.tags[this_word].size }}) {% endunless %}{% endfor %}
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
{% capture this_word %}{{ tag_words[item] }}{% endcapture %}
{% for post in site.tags[this_word] %}{% if post.title != null %}
{{ post.title }}
{{ post.date | date_to_string }}
{% endif %}{% endfor %}
{% endunless %}{% endfor %}