--- layout: default pagination: data: collections size: 1 alias: tag permalink: /tags/{{ tag }}/ eleventyComputed: title: '{{ tag }}' --- {% assign posts = collections[tag] | reverse %} {% for post in posts %} {% assign author = post.data.link | stripUtm | authorLookup %}
{% if author %}{% tablericon "link" "Link" %}{% endif %} {% tablericon "calendar-month" "Date" %}
{% if author %} {% else %} {% endif %}

{{ post.data.title }}

{% if author %}via {{ author }}{% endif %} {% if post.data.excerpt %}

{{ post.data.post_excerpt | markdown }}

{% else %}

{{ post.data.description | markdown }}

{% endif %}
{% endfor %}