2019-07-30 19:56:21 +00:00
|
|
|
---
|
|
|
|
layout: minify
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-12-01 06:56:55 +00:00
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
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-12-01 07:01:36 +00:00
|
|
|
<content>{{ post.content | markdownify }}</content>
|
2019-12-01 06:42:45 +00:00
|
|
|
<content:encoded>{{ post.content | xml_escape }}</content:encoded>
|
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:21:29 +00:00
|
|
|
<id>{{ site.url }}/news#{{ post.date | date: '%Y-%m-%d' }}-{{ post.title }}</id>
|
|
|
|
<link href="{{ site.url }}/news#{{ post.date | date: '%Y-%m-%d' }}-{{ post.title }}"/>
|
2019-07-30 19:56:21 +00:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|