blog/atom.xml (16 lines of code) (raw):

--- --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>{{ site.url }}/</id> <title><![CDATA[{{ site.title }}]]></title> <link href="{{ site.url }}/atom.xml" rel="self"/> <link href="{{ site.url }}/"/> <generator uri="https://jekyllrb.com/">Jekyll</generator> {% for post in site.posts limit: 20 %} <entry> <id>{{ site.url }}{{ post.id }}</id> <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title> <link href="{{ site.url }}{{ post.url }}"/> <updated>{{ post.date | date: "%Y-%m-%dT00:00:00Z" }}</updated> <content type="html"><![CDATA[{{ post.content | expand_urls: site.url | cdata_escape }}]]></content> </entry> {% endfor %} </feed>