-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathr.xml
29 lines (28 loc) · 1.33 KB
/
r.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
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<!--This atom xml feed aggregates all posts in the 'r' category (for R-Bloggers) -->
<feed xmlns="http://www.w3.org/2005/Atom">
<generator uri="https://jekyllrb.com/" version="4.0.0">Jekyll</generator>
<link href="{{ site.url | xml_escape }}/r.xml" rel="self" type="application/atom+xml"/>
<link href="{{ site.url | xml_escape }}" rel="alternate" type="text/html"/>
<updated>{{site.time | date_to_xmlschema}}</updated>
<id>{{ site.url | xml_escape }}/r.xml</id>
<title type="html">{{ site.title }}-R</title>
<subtitle>{{ site.description }}</subtitle>
<author><name>{{ site.author.name }}</name></author>
<!-- aggregate posts in the 'r' category -->
{% for post in site.tags.r %}
<entry>
<title type="html">{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}" rel="alternate" type="text/html" title="{{ post.title }}"/>
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url | xml_escape }}{{ post.id | xml_escape }}</id>
<content type="html" xml:base="{{ site.url }}{{ post.url }}">{{post.content | xml_escape }}</content>
<author><name>{{ site.author.name }}</name></author>
<summary type="html">{{ post.excerpt | strip_html }}</summary>
</entry>
{% endfor %}
</feed>