forked from metajack/metajack.im
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
37 lines (33 loc) · 1.32 KB
/
Copy pathatom.xml
File metadata and controls
37 lines (33 loc) · 1.32 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
---
layout; nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>metajack.im</title>
<link rel="alternate" type="text/html" href="http://metajack.im/" />
<link rel="self" type="application/atom+xml" href="http://metajack.im/atom.xml" />
<id>http://metajack.im/atom.xml</id>
<updated>{{ site.time | date_to_utc | date:"%Y-%m-%dT%H:%M:%SZ" }}</updated>
<subtitle>a blog about startups and code</subtitle>
{% for post in site.posts limit:15 %}
{% if post.id == '/2008/12/23/some-predictions-for-2009/' %}
{% assign last_dash_index = forloop.index0 %}
{% endif %}
<entry>
<title>{{ post.title }}</title>
<link rel='alternate' type='text/html' href='{{ post.url }}' />
<id>tag:metajack.im:{% if forloop.index0 > last_dash_index %}{{ post.id | replace:"-","_" }}{% else %}{{ post.id }}{% endif %}</id>
<updated>{{ post.date | date.getutc:"%Y-%m-%dT%H:%M:00Z" }}</updated>
<updated></updated>
<author>
<name>Jack Moffitt</name>
<uri>http://metajack.im</uri>
<email>jack@metajack.im</email>
</author>
<summary>{{ post.content | html_truncatewords:50 }}</summary>
<content type='html' xml:lang='en' xml:base='http://metajack.im/'>
<![CDATA[{{ post.content }}{{ post.extended }}]]>
</content>
</entry>
{% endfor %}
</feed>