diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-06-02 21:34:29 +0200 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-06-02 21:34:29 +0200 |
| commit | db7b464d701c7d48777ddd38a10f69093cd5442c (patch) | |
| tree | 788d01018ac3190b1e5d8f4f26e8fd379d6a74fa /templates/feed.xml | |
| parent | 863ccf104e7cae08268b9e46896b82a9918a22fd (diff) | |
| parent | 04b71c5478dea42937a3288aed9598663c6dab0d (diff) | |
Merge branch 'feature/rbdr-rss-support' into develop
Diffstat (limited to 'templates/feed.xml')
| -rw-r--r-- | templates/feed.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/feed.xml b/templates/feed.xml new file mode 100644 index 0000000..d22d656 --- /dev/null +++ b/templates/feed.xml @@ -0,0 +1,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> |