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