---
layout: default
---
{% if site.tags[page.slug] %}
{% for post in site.tags[page.slug] %}
-
{{ post.title }}
{{ post.description }}
{{ post.date | date: "%B %-d, %Y" }}
-
{% capture words %}
{{ post.content | number_of_words }}
{% endcapture %}
{% unless words contains "-" %}
{{ words | plus: 250 | divided_by: 250 | append: " minute read" }}
{% endunless %}
-
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% endfor %}
{% else %}
There are no posts in {{ page.slug }}.
{% endif %}