Last active
May 16, 2016 09:03
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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