diff --git a/src/rss.njk b/src/rss.njk index 8d84eae..682c690 100644 --- a/src/rss.njk +++ b/src/rss.njk @@ -4,26 +4,25 @@ layout: null eleventyExcludeFromCollections: true excludeFromSitemap: true --- + - {{ meta.siteName }} - {{ meta.siteDescription }} - - - {{ meta.url }}/ - - {{ meta.author }} - - {% for post in collections.post %} - +{{ meta.siteName }} +{{ meta.siteDescription }} + + +{{ meta.url }}/ + +{{ meta.author }} + +{% for post in collections.post %} + {{ meta.url }}{{ post.url }} {{ post.data.title | escape }} - - {{ post.date }} - {%- for tag in post.data.tags %} - - {%- endfor %} + + {{ post.date }} + {%- for tag in post.data.tags %}{%- endfor %} {{ post.content | escape }} - - {% endfor %} + +{% endfor %}