-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
43 lines (39 loc) · 1.18 KB
/
atom.xml
File metadata and controls
43 lines (39 loc) · 1.18 KB
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
35
36
37
38
39
40
41
42
43
---
layout: nil
---
<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Tim Keller</title>
<subtitle>Technology and the Future of Learning.</subtitle>
<link href="http://timkeller.me/"/>
<link type="application/atom+xml" rel="self" href="http://timkeller.me/feed/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://timkeller.me</id>
<author>
<name>Tim Keller</name>
<email>timkeller@gmail.com</email>
</author>
{% for post in site.posts %}
<entry>
<id>tag:timkeller.me,2012-08-01:{{ post.slug }}</id>
{% if post.link %}
<link type="text/html" rel="alternate" href="{{ post.link }}"/>
<title>→ {{ post.title }}</title>
{% else %}
<link type="text/html" rel="alternate" href="http://timkeller.me{{ post.url }}"/>
<title>{{ post.title }}</title>
{% endif %}
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<author>
<name>Tim Keller</name>
<uri>http://timkeller.me</uri>
</author>
<content type="html">
<![CDATA[
{{ post.content }}
]]>
</content>
</entry>
{% endfor %}
</feed>