forked from void-linux/void-linux.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
28 lines (24 loc) · 780 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
---
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="http://voidlinux.org/"/>
<link type="application/atom+xml" rel="self" href="http://voidlinux.org/atom.xml"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<author>
<name>Void Linux Team</name>
</author>
<id>http://voidlinux.org/</id>
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="http://voidlinux.org{{ post.url }}"/>
<id>http://voidlinux.org{{ post.id }}</id>
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
</entry>
{% endfor %}
</feed>