-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
34 lines (34 loc) · 1.26 KB
/
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
34
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
<subtitle>{{ site.description }}</subtitle>
<icon>{{ site.baseurl }}/assets/favicon/favicon.png</icon>
<logo>{{ site.baseurl }}/assets/favicon/favicon.png</logo>
<link href="{{ site.url }}"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/atom.xml</id>
<generator>Pluto</generator>
<author>
<name>Bugzilla Webmasters</name>
<email>webmaster@bugzilla.org</email>
</author>
<link href="{{ site.url }}/atom.xml" rel="self" type="application/atom+xml"/>
<link href="{{ site.url }}" rel="alternate"/>
{% for post in site.posts limit: 10 %}
<entry xml:lang="en">
<id>{{ post.guid }}</id>
<author>
<name>{{ post.author }}</name>
<uri>{{ post.link }}</uri>
</author>
<published>{{ post.created_at | date_to_xmlschema }}</published>
<updated>{{ post.updated_at | date_to_xmlschema }}</updated>
<title>{{ post.title | xml_escape }}</title>
{% if post.summary %}<summary>{{ post.summary | xml_escape }}</summary>
{% endif %}<link href="{{ post.original_link }}"/>
<content type="html" xml:lang="en">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>