forked from waferbaby/usesthis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
feed.xml
30 lines (30 loc) · 1.05 KB
/
feed.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
---
layout: null
permalink: /feed/index.html
---
<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>The Setup</title>
<link href="http://setup.littletouch.org/" />
<link href="http://setup.littletouch.org/feed/" rel="self" />
<id>http://setup.littletouch.org/</id>
<updated>{{site.posts[0].date | date_to_xmlschema}}</updated>
<author><name>Sean Lee</name></author>
{% for post in site.posts %}
<entry>
<title>{{post.person}}</title>
<link href="http://setup.littletouch.org/interviews/{{post.slug}}/" />
<id>http://setup.littletouch.org/interviews/{{post.slug}}/</id>
<published>{{post.date | date_to_xmlschema}}</published>
<updated>{{post.date | date_to_xmlschema}}</updated>
{% for category in post.categories %}<category term="{{category}}" />
{% endfor %}
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p><img src="/images/portraits/{{post.slug}}.jpg" alt="{{post.person}}" width="500" height="335" /></p>
{{post.content}}
</div>
</content>
</entry>
{% endfor %}
</feed>