]> git.r.bdr.sh - rbdr/blog/blob - templates/feed.xml
Use serde and time
[rbdr/blog] / templates / feed.xml
1 <?xml version="1.0"?>
2 <rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:atom="http://www.w3.org/2005/Atom">
3 <channel>
4 <title>My Ephemeral Blog</title>
5 <description>My Ephemeral Blog</description>
6 <language>en</language>
7 {{~ posts: post}}
8 <item>
9 <guid isPermaLink="false">blog:{{= post.id}}</guid>
10 <pubDate>{{= post.created_on_utc}}</pubDate>
11 <title>{{= post.title}}</title>
12 <description>
13 {{= post.escaped_html}}
14 </description>
15 </item>
16 {{~}}
17 </channel>
18 </rss>