aboutsummaryrefslogtreecommitdiff
path: root/templates/feed.xml
blob: d22d6561f0b067b8f2863a0ccf24d381563d749d (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">
  <channel>
    <title>Blog at Unlimited Pizza 🍕</title>
    <link>https://blog.unlimited.pizza</link>
    <description>This is the blog at unlimited.pizza</description>
    <language>en</language>
    {{~ it.posts: post}}
      <item>
        <guid isPermaLink="false">unlimited-pizza:{{= post.id}}</guid>
        <pubDate>{{= post.createdOn}}</pubDate>
        <description>
          {{= post.html}}
        </description>
      </item>
    {{~}}
  </channel>
</rss>