blob: 17a4c7c5410cb350bff7e95a3b93fad94a033d95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0"?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>My Ephemeral Blog</title>
<description>My Ephemeral Blog</description>
<language>en</language>
{{~ it.posts: post}}
<item>
<guid isPermaLink="false">blog:{{= post.id}}</guid>
<pubDate>{{= post.createdOn}}</pubDate>
<title>{{= post.title}}</title>
<description>
{{= post.html}}
</description>
</item>
{{~}}
</channel>
</rss>
|