--- title: Tag pagestyle: tag layout: default --- {% assign tag = site.data.tags[page.tag] %}

Tag: {{ tag.name }}


{{ tag.desc }}
{% for post in site.posts %} {% if post.tags contains page.tag %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %} {% if post.tags.size > 0 %}
    {% for post_tag in post.tags %} {% assign tag = site.data.tags[post_tag] %} {% if tag %}
  1. {{ tag.name }}
  2. {% endif %} {% endfor %}
{% endif %}

{{ post.excerpt }}
{% endif %} {% endfor %}