-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathatom.xml
21 lines (21 loc) · 820 Bytes
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Inf's Lair</title>
<link type="application/atom+xml" href="{{ site.url }}/atom.xml" rel="self" />
<link type="text/html" href="{{ site.url }}/" rel="alternate" />
<id>tag:ascarter.net,2009-12-31:/atom.xml</id>
<updated>{{ site.time | date_to_xmlschema }}</updated>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<author>
<name>Paul Yang</name>
</author>
<link type="text/html" href="{{ site.url }}{{ post.url }}" rel="alternate" />
<updated>{{ post.date | date: "%Y-%m-%dT%H:%M:%S-07:00" }}</updated>
<id>tag:infohunter.github.io,{{ post.date | date: "%Y-%m-%d" }}:{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>{% endfor %}
</feed>