---
layout: archive
permalink: /posts-list/
---
{% assign sorted_tags = (site.tags | sort:0) %}
{% for tag in sorted_tags %}
{% assign t = tag | first %}
{% assign ps = tag | last %}
- {{ t }} ({{ ps.size }})
{% endfor %}
{% for tag in sorted_tags %}
{% assign t = tag | first %}
{% assign posts = tag | last %}
{{ t }}
{% for post in posts %}
{% if post.tags contains t %}
{% if post.link %}
-
{{ post.date | date: '%d %b %y' }}: {{ post.title }}
{% else %}
-
{{ post.date | date: '%d %b %y' }}: {{ post.title }}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}