---
title: tags
layout: default
id: tags
toc: false
post: false
---
{% assign tags = site.data.tags %}
{% for tag in tags %}
-
{{ tag[0] }} ({{ tag[1] }})
{% assign posts = site.items | where_exp: "post", "post.tags contains tag[0]" %}
{% for post in posts %}
- {{ post.title }}
{% endfor %}
{% endfor %}