2014-01-01 07:45:28 +00:00
|
|
|
---
|
2015-07-25 21:44:04 +00:00
|
|
|
layout: null
|
2014-01-01 07:45:28 +00:00
|
|
|
---
|
2014-01-02 05:49:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
|
2015-07-25 21:44:04 +00:00
|
|
|
|
2014-01-02 05:49:38 +00:00
|
|
|
<title type="text">{{ site.title }}</title>
|
|
|
|
<generator uri="http://jekyllrb.com/">Jekyll</generator>
|
|
|
|
<link rel="self" type="application/atom+xml" href="{{ site.url }}/atom.xml"/>
|
|
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}"/>
|
2014-01-01 07:45:28 +00:00
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
2014-01-02 05:49:38 +00:00
|
|
|
<id>{{ site.url }}/</id>
|
2014-01-01 07:45:28 +00:00
|
|
|
<author>
|
2014-01-02 05:49:38 +00:00
|
|
|
<name>{{ site.owner.name }}</name>
|
|
|
|
<uri>{{ site.url }}/</uri>
|
|
|
|
<email>{{ site.owner.email }}</email>
|
2014-01-01 07:45:28 +00:00
|
|
|
</author>
|
|
|
|
|
2014-01-02 05:49:38 +00:00
|
|
|
{% for post in site.posts limit:20 %}
|
2014-01-01 07:45:28 +00:00
|
|
|
<entry>
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
|
|
|
<link type="text/html" rel="alternate" href="{{ site.url }}{{ post.url }}"/>
|
2014-01-02 05:49:38 +00:00
|
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
2014-01-01 07:45:28 +00:00
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
2014-01-02 05:49:38 +00:00
|
|
|
<updated>{% if post.modified %}{{ post.modified | to_xmlschema }}T00:00:00-00:00{% else %}{{ post.date | date_to_xmlschema }}{% endif %}</updated>
|
2014-01-01 07:45:28 +00:00
|
|
|
<author>
|
2014-01-02 05:49:38 +00:00
|
|
|
<name>{{ site.owner.name }}</name>
|
|
|
|
<uri>{{ site.url }}/</uri>
|
|
|
|
<email>{{ site.owner.email }}</email>
|
2014-01-01 07:45:28 +00:00
|
|
|
</author>
|
2014-01-02 05:49:38 +00:00
|
|
|
<content type="html">{{ post.content | xml_escape }}
|
|
|
|
<p><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> was originally published by {{ site.owner.name }} at <a href="{{ site.url }}/">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p></content>
|
2014-01-01 07:45:28 +00:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2015-07-25 21:44:04 +00:00
|
|
|
|
|
|
|
</feed>
|