-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathfeed.xml
More file actions
38 lines (31 loc) · 1.37 KB
/
feed.xml
File metadata and controls
38 lines (31 loc) · 1.37 KB
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
34
35
36
37
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<generator uri="https://jekyllrb.com/" version="{{ jekyll.version }}">Jekyll</generator>
<link href="https://www.aprilcools.club/feed.xml" rel="self" type="application/atom+xml" />
<link href="https://www.aprilcools.club/" rel="alternate" type="text/html" hreflang="en" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>https://www.aprilcools.club/feed.xml</id>
<title type="html">April Cools' Club</title>
<author>
<name>April Cools' Club</name>
<uri>https://www.aprilcools.club/</uri>
</author>
{% assign projects = site.data.projects | sort: 'date' | reverse %}
{% for project in projects %}
<entry xml:lang="en">
<title type="html">{{ project.title | xml_escape }}</title>
<link href="{{ project.link }}" rel="alternate" type="text/html" title="{{ project.title | xml_escape }}" />
<published>{{ project.date | date_to_xmlschema }}</published>
<updated>{{ project.date | date_to_xmlschema }}</updated>
<id>tag:www.aprilcools.club,{{ project.date | date: "%Y-%m-%d" }}:{{ project.title | slugify: "ascii" }}</id>
<summary type="html">
{{ project.abstract | xml_escape }}
</summary>
<author>
<name>{{ project.author }}</name>
</author>
</entry>
{% endfor %}
</feed>