Skip to content

Instantly share code, notes, and snippets.

@gonzalo-bulnes
Forked from stammy/index.xml
Created January 3, 2014 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gonzalo-bulnes/8232940 to your computer and use it in GitHub Desktop.
Save gonzalo-bulnes/8232940 to your computer and use it in GitHub Desktop.
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">{{ site.root_desc }}</title>
<link type="application/atom+xml" href="http://paulstamatiou.com/feed/" rel="self"/>
<link type="text" href="http://paulstamatiou.com" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://paulstamatiou.com</id>
<author>
<name>Paul Stamatiou</name>
</author>
<rights>Copyright (c) 2005-2011, Paul Stamatiou; all rights reserved.</rights>
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title }}</title>
<link href="http://paulstamatiou.com{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://paulstamatiou.com{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}{% include rss_footer.html %}</content>
</entry>
{% endfor %}
</feed>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment