--- title: Blog layout: base.njk pagination: data: collections.tags size: 1 alias: tag eleventyComputed: permalink: "/post/tag/{{ tag }}/" feed: "/post/tag/{{ tag }}/feed/" ---

Posts tagged “{{ tag }}”

    {% set posts = collections.posts | filterBy(tag) %} {% for item in posts %}
  1. {{ item.data.title | safe }}

    {{ item.content | excerpt }}
    Read more
  2. {% endfor %}