--- layout: page title: "Tags" description: "Explore posts by tags and topics" permalink: /tags/ ---

All Tags

{% assign all_tags = site.posts | map: 'tags' | join: ',' | split: ',' | uniq | sort %} {% assign tag_counts = '' | split: '' %} {% for tag in all_tags %} {% assign tag_posts = site.posts | where_exp: "post", "post.tags contains tag" %} {% assign tag_counts = tag_counts | push: tag_posts.size %} {% endfor %} {% if all_tags.size > 0 %}
{% for tag in all_tags %} {% assign tag_posts = site.posts | where_exp: "post", "post.tags contains tag" %} {% assign tag_size = tag_posts.size %} {{ tag }} ({{ tag_size }}) {% endfor %}
{% for tag in all_tags %} {% assign tag_posts = site.posts | where_exp: "post", "post.tags contains tag" %}

{{ tag }}

{% for post in tag_posts limit:5 %}
{{ post.title }}
{% endfor %} {% if tag_posts.size > 5 %}
View all {{ tag_posts.size }} posts →
{% endif %}
{% endfor %}
{% else %}

No tags found.

{% endif %}