website/feed.xml

26 lines
863 B
XML
Raw Normal View History

2019-07-30 19:56:21 +00:00
---
layout: minify
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
2019-12-01 06:05:41 +00:00
<title>{{ site.title }} News</title>
2019-07-30 19:56:21 +00:00
<subtitle>{{ site.description }}</subtitle>
2019-12-01 05:42:45 +00:00
<updated>{{ site.time | date_to_xmlschema }}</updated>
2019-07-30 20:00:39 +00:00
<link href="{{ site.url }}/"/>
<link href="{{ site.url }}/feed.xml" rel="self"/>
2019-12-01 05:46:00 +00:00
<id>{{ site.url }}/feed.xml</id>
2019-07-30 19:56:21 +00:00
{% for post in site.posts %}
<entry>
<title>{{ post.date | date: "%B %e, %Y" }}</title>
2019-12-01 05:42:45 +00:00
<author>
<name>{{ site.title }}</name>
</author>
2019-07-30 20:00:39 +00:00
<content type="html">{{ post.content | xml_escape }}</content>
2019-12-01 05:34:36 +00:00
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
2019-12-01 06:08:29 +00:00
<id>{{ site.url }}/news#{{ post.date | date: '%Y-%m-%d' }}a</id>
2019-12-01 05:58:16 +00:00
<link href="{{ site.url }}/news#{{ post.date | date: '%Y-%m-%d' }}"/>
2019-07-30 19:56:21 +00:00
</entry>
{% endfor %}
</feed>