2013-06-25 20:19:49 +00:00
|
|
|
---
|
2014-08-09 00:42:45 +00:00
|
|
|
sitemap: false
|
2013-06-25 20:19:49 +00:00
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
|
|
|
|
<title type="text">{{ site.title }}</title>
|
2014-08-09 00:42:45 +00:00
|
|
|
<generator uri="https://github.com/jekyll/jekyll">Jekyll</generator>
|
|
|
|
<link rel="self" type="application/atom+xml" href="{{ site.url }}/feed.xml" />
|
|
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}" />
|
2013-06-25 20:19:49 +00:00
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
2014-08-09 00:42:45 +00:00
|
|
|
<id>{{ site.url }}/</id>
|
2013-06-25 20:19:49 +00:00
|
|
|
<author>
|
|
|
|
<name>{{ site.owner.name }}</name>
|
2014-08-09 00:42:45 +00:00
|
|
|
<uri>{{ site.url }}/</uri>
|
|
|
|
{% if site.owner.email %}<email>{{ site.owner.email }}</email>{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
</author>
|
|
|
|
{% for post in site.posts limit:20 %}
|
2014-08-09 00:42:45 +00:00
|
|
|
{% if post.author %}
|
|
|
|
{% assign author = site.data.authors[post.author] %}
|
|
|
|
{% else %}
|
|
|
|
{% assign author = site.owner %}
|
|
|
|
{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
<entry>
|
|
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
2014-08-09 00:42:45 +00:00
|
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url }}" />
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
2013-06-27 21:30:22 +00:00
|
|
|
{% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated>
|
2013-06-25 20:19:49 +00:00
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
2013-06-27 21:11:23 +00:00
|
|
|
{% else %}<published>{{ post.date | date_to_xmlschema }}</published>
|
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
<author>
|
2014-08-09 00:42:45 +00:00
|
|
|
<name>{{ author.name }}</name>
|
|
|
|
<uri>{{ site.url }}</uri>
|
|
|
|
{% if author.email %}<email>{{ author.email }}</email>{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
</author>
|
2015-01-30 14:36:27 +00:00
|
|
|
<content type="html">
|
|
|
|
{{ post.content | xml_escape }}
|
|
|
|
{% include feed-footer.html %}
|
|
|
|
</content>
|
2013-06-25 20:19:49 +00:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2014-08-09 00:42:45 +00:00
|
|
|
</feed>
|