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-07-30 20:00:39 +00:00
|
|
|
<title>{{ site.title }} - News</title>
|
2019-07-30 19:56:21 +00:00
|
|
|
<subtitle>{{ site.description }}</subtitle>
|
2019-12-01 05:29:05 +00:00
|
|
|
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
|
2019-07-30 20:00:39 +00:00
|
|
|
<link href="{{ site.url }}/"/>
|
|
|
|
<link href="{{ site.url }}/feed.xml" rel="self"/>
|
2019-07-30 19:56:21 +00:00
|
|
|
{% for post in site.posts %}
|
|
|
|
<entry>
|
|
|
|
<title>{{ post.date | date: "%B %e, %Y" }}</title>
|
2019-07-30 20:00:39 +00:00
|
|
|
<content type="html">{{ post.content | xml_escape }}</content>
|
2019-12-01 05:29:05 +00:00
|
|
|
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
|
2019-07-30 20:00:39 +00:00
|
|
|
<link href="{{ site.url }}/news/"/>
|
2019-07-30 19:56:21 +00:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|