-
Notifications
You must be signed in to change notification settings - Fork 28
/
feed.xml
30 lines (28 loc) · 1.25 KB
/
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
---
layout: null
# https://validator.w3.org/feed/docs/atom.html
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">{{ site.title | xml_escape }}</title>
<subtitle type="text" xml:lang="en">{{ site.description | xml_escape }}</subtitle>
<link type="application/atom+xml" href="{{ '/feed.xml' | prepend: site.baseurl | prepend: site.url }}" rel="self"/>
<link type="text" href="{{ site.url }}{{ site.baseurl }}" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<generator>Jekyll v{{ jekyll.version }}</generator>
<icon>https://avatars1.githubusercontent.com/u/25086656</icon>
<id>{{ site.title | xml_escape }}</id>
<rights>CC-BY 4.0</rights>
{% for post in site.posts limit:10 %}
<entry>
<author>
<name>{{ post.author | xml_escape }}</name>
</author>
<title>{{ post.title | xml_escape }}</title>
<link rel="alternate" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}"/>
<published>{{ post.date | date_to_xmlschema }}</published>
<id>{{ post.url | prepend: site.baseurl | prepend: site.url }}</id>
<content type="html">{{ post.content | xml_escape }}{% include footer.html %}</content>
</entry>
{% endfor %}
</feed>