Skip to content

Instantly share code, notes, and snippets.

@stevepowell99
Last active May 16, 2016 09:03
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 stevepowell99/98b88302718be2d4ca48c3fa57457d1b to your computer and use it in GitHub Desktop.
Save stevepowell99/98b88302718be2d4ca48c3fa57457d1b to your computer and use it in GitHub Desktop.
Rss feed for tagged posts on blot.im; see http://stevepowell.blot.im/rfeed
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>{{title}}</title>
<link>{{blogURL}}</link>
<description>The feed of updates on R to {{name}}'s blog.</description>
<updated>{{updated}}</updated>
<id>{{blogURL}}</id>
<author>
<name>{{name}}</name>
</author>
{{#allEntries}}
{{#tagged.R}}
<item>
<title>{{title}}</title>
<link>{{blogURL}}{{url}}</link>
<guid>{{blogURL}}/{{id}}</guid>
<pubDate>{{dateUTC}}</pubDate>
<description>{{body}}</description>
</item>
{{/tagged.R}}
{{/allEntries}}
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment