-
Notifications
You must be signed in to change notification settings - Fork 365
/
rweekly-feed.xml
33 lines (29 loc) · 1.2 KB
/
rweekly-feed.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
27
28
29
30
31
32
33
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
<link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/>
<link href="{{ site.url }}{{ site.baseurl }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>https://rweekly.org/</id>
<author>
<name>R Weekly</name>
<email>[email protected]</email>
</author>
{% for post in site.posts limit:5 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ site.baseurl }}{{ post.url }}?utm_source=rbloggers&utm_campaign={{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">
<p>Hello and welcome to this new issue!</p>
<p><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}?utm_source=rbloggers&utm_campaign={{ post.url }}"> 🔗 Read this issue on RWeekly.org </a></p>
{{ post.excerpt | xml_escape }}
<img src="https://web.rweekly.org/js/index.php?idsite=1&rec=1" style="border:0" alt="" />
</content>
</entry>
{% endfor %}
</feed>