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