Skip to content

Instantly share code, notes, and snippets.

@patricknaish
Forked from stammy/index.xml
Last active December 17, 2015 10:28
Show Gist options
  • Save patricknaish/5594683 to your computer and use it in GitHub Desktop.
Save patricknaish/5594683 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://pmnaish.co.uk/feed/" rel="self"/>
<link type="text" href="http://pmnaish.co.uk" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://pmnaish.co.uk</id>
<author>
<name>Patrick Naish</name>
</author>
<rights>(c) Patrick Naish 2011-2013</rights>
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title }}</title>
<link href="http://pmnaish.co.uk{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://pmnaish.co.uk{{ 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