20 lines
767 B
XML
Executable file
20 lines
767 B
XML
Executable file
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>The Paper Pilot</title>
|
|
<description>The Latest Projects By The Paper Pilot</description>
|
|
<link>http://thepaperpilot.org</link>
|
|
{% for post in site.posts %}
|
|
<item>
|
|
<title>{{ post.title | xml_escape }}</title>
|
|
<description>{{ post.content | xml_escape }}</description>
|
|
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
|
|
<link>{{ post.url | prepend: site.url }}</link>
|
|
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|