--- permalink: /feed.xml eleventyExcludeFromCollections: true templateEngine: njk --- {{ site.name }} {{ site.description }} {% if collections.posts and (collections.posts | length) %} {{ collections.posts[0].date | htmlDateString }}T00:00:00Z {% else %} {{ '1970-01-01' }} {% endif %} {{ site.url }}/ {{ site.author }} {% if collections.posts and (collections.posts | length) %} {% for post in collections.posts | slice(0, 20) %} {{ post.data.title }} {{ post.date | htmlDateString }}T00:00:00Z {{ site.url }}{{ post.url }} {{ post.templateContent | htmlToAbsoluteUrls(site.url) }} {% if post.data.description %} {{ post.data.description }} {% endif %} {% for tag in post.data.tags %} {% endfor %} {% endfor %} {% endif %}