aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'all.rss.xml')
-rw-r--r--all.rss.xml18
1 files changed, 0 insertions, 18 deletions
diff --git a/all.rss.xml b/all.rss.xml
deleted file mode 100644
index cafc7fd..0000000
--- a/all.rss.xml
+++ /dev/null
@@ -1,18 +0,0 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3 <channel>
4 <title>{{ site.name }}</title>
5 <link>{{ site.url }}</link>
6 <description>{{ site.tagline }}</description>
7 <atom:link href="{{ site.url }}/rss" rel="self" type="application/rss+xml" />
8 {% for post in posts[:20] %}
9 <item>
10 <title>{{ post.title | e }}</title>
11 <description>{{ post.body | e }}</description>
12 <pubDate>{{ post.date_rss }}</pubDate>
13 <link>{{ site.url }}/{{ post.permalink }}</link>
14 <guid isPermaLink="true">{{ site.url }}/{{ post.permalink }}</guid>
15 </item>
16 {% endfor %}
17 </channel>
18</rss>
Powered by cgit v1.2.3 (git 2.41.0)