2013-06-25 20:19:49 +00:00
|
|
|
---
|
|
|
|
layout: none
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
|
2014-05-14 22:21:33 +00:00
|
|
|
{% assign add_protocol = false %}
|
2014-05-14 21:28:46 +00:00
|
|
|
{% if site.url != '' and site.url | split: '/' | first != 'http:' and site.url | split: '/' | first != 'https:' %}
|
2014-05-14 21:20:42 +00:00
|
|
|
{% assign site_url = site.url | prepend: 'http:' %}
|
2014-05-14 22:21:33 +00:00
|
|
|
{% assign add_protocol = true %}
|
2014-05-14 21:20:42 +00:00
|
|
|
{% else %}
|
|
|
|
{% assign site_url = site.url %}
|
|
|
|
{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
<title type="text">{{ site.title }}</title>
|
|
|
|
<generator uri="https://github.com/mojombo/jekyll">Jekyll</generator>
|
2014-05-14 21:20:42 +00:00
|
|
|
<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-05-14 21:20:42 +00:00
|
|
|
<id>{{ site_url }}/</id>
|
2013-06-25 20:19:49 +00:00
|
|
|
<author>
|
|
|
|
<name>{{ site.owner.name }}</name>
|
2014-05-14 21:20:42 +00:00
|
|
|
<uri>{{ site_url }}/</uri>
|
2013-06-25 20:19:49 +00:00
|
|
|
<email>{{ site.owner.email }}</email>
|
|
|
|
</author>
|
|
|
|
{% for post in site.posts limit:20 %}
|
|
|
|
|
|
|
|
<entry>
|
|
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
2014-05-14 21:20:42 +00:00
|
|
|
<link rel="alternate" type="text/html" href="{% if post.link %}{{ post.link }}{% else %}{{ site_url }}{{ post.url }}{% endif %}"/>
|
|
|
|
<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>
|
|
|
|
<name>{{ site.owner.name }}</name>
|
2014-05-14 21:20:42 +00:00
|
|
|
<uri>{{ site_url }}</uri>
|
2013-06-25 20:19:49 +00:00
|
|
|
<email>{{ site.owner.email }}</email>
|
|
|
|
</author>
|
2014-05-14 21:20:42 +00:00
|
|
|
{% for tag in post.tags %}<category scheme="{{ site_url }}/tags/#{{ tag | uri_escape }}" term="{{ tag }}" />{% endfor %}
|
2014-05-14 22:21:33 +00:00
|
|
|
<content type="html">
|
|
|
|
{% if add_protocol %}
|
|
|
|
{{ post.content | xml_escape | replace: site.url, site_url }}
|
|
|
|
{% else %}
|
|
|
|
{{ post.content | xml_escape }}
|
|
|
|
{% endif %}
|
2014-05-14 21:20:42 +00:00
|
|
|
<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>
|
2013-06-25 20:19:49 +00:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2013-08-12 17:35:31 +00:00
|
|
|
</feed>
|