forked from void-linux/void-linux.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
33 lines (29 loc) · 909 Bytes
/
atom.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: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Void news</title>
<subtitle>Follow Void Linux news</subtitle>
<link href="https://voidlinux.org/"/>
<link type="application/atom+xml" rel="self" href="https://voidlinux.org/atom.xml"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<author>
<name>Void Linux Team</name>
</author>
<id>https://voidlinux.org/</id>
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="https://voidlinux.org{{ post.url }}"/>
<id>https://voidlinux.org{{ post.id }}</id>
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>{{ post.content }}</p>
</div>
</content>
</entry>
{% endfor %}
</feed>