forked from nottrobin/robinwinslow.uk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrss-dev.xml
25 lines (23 loc) · 1.01 KB
/
rss-dev.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
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">Dev posts | the blog of robin</title>
<link type="application/atom+xml" href="https://robinwinslow.co.uk/rss-dev.xml" rel="self"/>
<link type="text/html" href="https://robinwinslow.co.uk/dev/" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>https://robinwinslow.co.uk/dev/</id>
<author>
<name>Robin Winslow</name>
</author>
<rights>Creative commons Attribution-ShareAlike 3.0: Please copy, modify and reshare my work.</rights>
{% for post in site.tags.dev %}
<entry>
<title type="html">{{ post.title | xml_escape }}</title>
<link href="https://robinwinslow.co.uk{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>https://robinwinslow.co.uk{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>