2023-04-04 14:22:44 -04:00
|
|
|
---
|
2023-04-06 14:46:54 -04:00
|
|
|
permalink: '/feed.xml'
|
2023-04-04 14:22:44 -04:00
|
|
|
eleventyExcludeFromCollections: true
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>Sass Blog</title>
|
|
|
|
<id>{{ '/blog' | absoluteUrl: site.url }}</id>
|
|
|
|
<link href="{{ '/blog' | absoluteUrl: site.url }}"/>
|
2023-04-05 10:54:46 -04:00
|
|
|
<link href="{{ page.url | absoluteUrl: site.url }}" rel="self"/>
|
2023-04-04 14:22:44 -04:00
|
|
|
<updated>{{ collections.blog | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
|
|
|
|
{%- assign posts = collections.blog | reverse -%}
|
2023-04-06 11:54:48 -04:00
|
|
|
{%- for post in posts limit:6 -%}
|
|
|
|
{%- assign absolutePostUrl = post.url | absoluteUrl: site.url %}
|
2023-04-04 14:22:44 -04:00
|
|
|
<entry>
|
|
|
|
<title>{{ post.data.title }}</title>
|
|
|
|
<link href="{{ absolutePostUrl }}" rel="alternate"/>
|
|
|
|
<id>{{ absolutePostUrl }}</id>
|
|
|
|
<published>{{ post.date | dateToRfc3339 }}</published>
|
2023-04-04 18:05:24 -04:00
|
|
|
<updated>{{ post.data.updated | default: post.date | dateToRfc3339 }}</updated>
|
2023-04-04 14:22:44 -04:00
|
|
|
<author>
|
|
|
|
<name>{{ post.data.author }}</name>
|
|
|
|
</author>
|
|
|
|
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls: absolutePostUrl | escape }}</content>
|
2023-04-06 11:54:48 -04:00
|
|
|
</entry>{% endfor %}
|
2023-04-04 14:22:44 -04:00
|
|
|
</feed>
|