--- eleventyExcludeFromCollections: true pagination: data: collections size: 1 alias: tag filter: - all - pages - links - timeline eleventyComputed: finalLink: "{% if tag == 'posts' %}feed.xml{% else %}feeds/{{tag | slugify}}.xml{% endif %}" permalink: "/assets/{{finalLink}}" --- {{ site.title }} - {{ tag }} {{ collections.pages[tag].data.description or site.description }} {{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }} {{ site.baseUrl | addPathPrefixToFullUrl }} {{ site.author.name }} {%- for entry in collections[tag] | reverse %} {%- if entry.url and entry.date -%} {%- set absolutePostUrl %}{{ entry.url | htmlBaseUrl(site.baseUrl) }}{% endset %} {{ entry.data.title }} {{ entry.date | dateToRfc3339 }} {{ absolutePostUrl }} {{ entry.content | renderTransforms(entry.data.page, site.baseUrl) }} {%- endif -%} {%- endfor %}