Skip to content

Instantly share code, notes, and snippets.

@erjjones
Created March 13, 2012 02:49
Show Gist options
  • Save erjjones/2026283 to your computer and use it in GitHub Desktop.
Save erjjones/2026283 to your computer and use it in GitHub Desktop.
SetupRSSfeed
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Eric Jones</title>
<link href="http://erjjones.github.com/atom.xml" rel="self"/>
<link href="http://erjjones.github.com/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://erjjones.github.com</id>
<author>
<name>Eric Jones</name>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://erjjones.github.com{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://erjjones.github.com{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment