-
Notifications
You must be signed in to change notification settings - Fork 7
/
rss.xml
26 lines (24 loc) · 1.03 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">All posts | by Robin</title>
<link type="application/atom+xml" href="https://robinwinslow.co.uk/rss.xml" rel="self"/>
<link type="text/html" href="https://robinwinslow.co.uk" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>https://robinwinslow.co.uk/</id>
<author>
<name>Robin Winslow</name>
</author>
<rights>Creative commons Attribution-ShareAlike 3.0: Please copy, modify and reshare my work.</rights>
{% assign artices_newest_first = site.articles | reverse %}
{% for article in artices_newest_first %}
<entry>
<title type="html">{{ article.title | xml_escape }}</title>
<link href="https://robinwinslow.uk{{ article.url }}"/>
<updated>{{ article.date | date_to_xmlschema }}</updated>
<id>https://robinwinslow.uk{{ article.url }}</id>
<content type="html">{{ article.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>