website/feed.xml
2019-12-01 07:29:05 +02:00

19 lines
613 B
XML

---
layout: minify
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }} - News</title>
<subtitle>{{ site.description }}</subtitle>
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
<link href="{{ site.url }}/"/>
<link href="{{ site.url }}/feed.xml" rel="self"/>
{% for post in site.posts %}
<entry>
<title>{{ post.date | date: "%B %e, %Y" }}</title>
<content type="html">{{ post.content | xml_escape }}</content>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<link href="{{ site.url }}/news/"/>
</entry>
{% endfor %}
</feed>