-
Notifications
You must be signed in to change notification settings - Fork 14
/
rss_r.xml
21 lines (21 loc) · 895 Bytes
/
rss_r.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<!-- based on https://github.com/oxinabox/oxinabox.github.io/blob/master/rssfeed_julia.xml#L13 -->
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
<channel>
<title>o2r project blog -- R</title>
<description>R posts from o2r project blog "Opening Reproducible Research"</description>
<link>{{ site.url }}</link>
{% for post in site.posts %}{% for tag in post.categories %}{% if tag == 'r' or tag == 'R' %}
<item>
<title>{{ post.title }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<link>{{ post.url | prepend: site.url }}</link>
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
</item>
{% endif %}{% endfor %}{% endfor %}
</channel>
</rss>