We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a204ff commit bf23b4fCopy full SHA for bf23b4f
feed.rss
@@ -0,0 +1,19 @@
1
+---
2
+layout: rss-feed
3
4
+<?xml version="1.0" encoding="UTF-8"?>
5
+<rss version="2.0">
6
+ <channel>
7
+ <title>{{ site.name }}</title>
8
+ <description>{{ site.description }}</description>
9
+ <link>{{ site.url }}</link>
10
+ {% for post in site.posts limit:20 %}
11
+ <item>
12
+ <title>{{ post.title }}</title>
13
+ <description>{{ post.content | xml_escape }}</description>
14
+ <published>{{ post.date }}</published>
15
+ <link>{{ site.url }}{{ post.url }}</link>
16
+ </item>
17
+ {% endfor %}
18
+ </channel>
19
+</rss>
0 commit comments