2011-06-07 16:12:46 -04:00
|
|
|
---
|
|
|
|
layout: nil
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
2011-10-04 13:18:40 -04:00
|
|
|
<title><![CDATA[{{ site.title }}]]></title>
|
2011-06-07 16:12:46 -04:00
|
|
|
<link href="{{ site.url }}/atom.xml" rel="self"/>
|
|
|
|
<link href="{{ site.url }}/"/>
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}/</id>
|
|
|
|
<author>
|
2011-10-04 13:18:40 -04:00
|
|
|
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
|
|
|
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
2011-06-07 16:12:46 -04:00
|
|
|
</author>
|
2011-10-03 18:24:16 -04:00
|
|
|
<generator uri="http://octopress.org/">Octopress</generator>
|
2011-06-07 16:12:46 -04:00
|
|
|
|
2011-07-31 12:02:28 -04:00
|
|
|
{% for post in site.posts limit: 20 %}
|
2012-02-12 13:27:17 -05:00
|
|
|
{% assign linklog = false %}
|
2012-02-12 08:12:22 -05:00
|
|
|
{% if post.external-url %}{% capture linklog %}{{ post.external-url }}{% endcapture %}{% endif %}
|
|
|
|
{% capture title_url %}{% if linklog %}{{ linklog }}{% else %}{{ site.url }}{{ post.url }}{% endif %}{% endcapture %}
|
|
|
|
{% capture title %}{% if linklog and site.linklog_marker_position_feed == 'before' %}{{ site.linklog_marker }} {% endif %}{{ post.title }}{% if linklog and site.linklog_marker_position_feed == 'after' %} {{ site.linklog_marker }}{% endif %}{% endcapture %}
|
2011-06-07 16:12:46 -04:00
|
|
|
<entry>
|
2012-02-12 08:12:22 -05:00
|
|
|
<title type="html"><![CDATA[{{ title | cdata_escape }}]]></title>
|
|
|
|
<link href="{{ title_url }}"/>
|
2011-06-07 16:12:46 -04:00
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
2012-02-12 08:12:22 -05:00
|
|
|
{% capture content %}{{ post.content | expand_urls: site.url | cdata_escape }}{% if linklog %}<p><a rel="bookmark" href="{{ site.url }}{{ post.url }}">{{ site.feed_permalink_label }}</a></p>{% endif %}{% endcapture %}
|
|
|
|
<content type="html"><![CDATA[{{ content }}]]></content>
|
2011-06-07 16:12:46 -04:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|