blob: d95e38cde9f0c3f7354217bfc390c647e45dd2b1 (
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>
{{~ posts: post}}
<item>
<guid isPermaLink="false">blog:{{= post.id}}</guid>
<pubDate>{{= post.created_on_utc}}</pubDate>
<title>{{= post.title}}</title>
<description>
{{= post.escaped_html}}
</description>
</item>
{{~}}
</channel>
</rss>
|