aboutsummaryrefslogtreecommitdiff
path: root/templates/feed.xml
blob: 36edc2877dbd49ddb90e7872e319ef45866e8481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <atom:link href="https://r.bdr.sh/gemlog/feed.xml" rel="self" type="application/rss+xml" />
    <title>Ruben's Gemlog</title>
    <link>https://r.bdr.sh/gemlog/</link>
    <description>This is the gemlog at r.bdr.sh.</description>
    <language>en</language>
    {{~ it.posts: post}}
      <item>
        <guid isPermaLink="false">rbdr:{{= post.id}}</guid>
        <pubDate>{{= post.createdOn}}</pubDate>
        <title>{{= post.title}}</title>
        <description>
          {{= post.html}}
        </description>
      </item>
    {{~}}
  </channel>
</rss>