Skip to content

Instantly share code, notes, and snippets.

@ndarville
Last active October 1, 2015 13:24
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 ndarville/696198fb885c6e535aa4 to your computer and use it in GitHub Desktop.
Save ndarville/696198fb885c6e535aa4 to your computer and use it in GitHub Desktop.
RSS feed template for sarah
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.name }}</title>
<link href="{{ site_url }}/feed.atom" rel="self"/>
<link href="{{ site_url }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ base }}/</id>
// for link in link_collection
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ post.abs_url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated> # optional
<id>{{ site.url }}{{ post.id }}</id> # optional
<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