forked from devinbalkind/airtable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
18 lines (18 loc) · 991 Bytes
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
{% for post in site.posts limit:25 %}{% if forloop.first == true %}{% assign updated = post.atomdate %}<updated>{{ updated | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>{% endif %}{% endfor %}
<link rel="self" href="{{ site.url }}/atom.xml"/>
<author><name>Kin Lane</name></author>
<id>{{ site.url }}/atom.xml</id>{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% for post in site.posts limit:25 %}{% capture posttime %}{{post.date | date: '%s'}}{% endcapture %}{% if posttime < nowunix %}<entry>
<title>{{ post.title }}</title>
<link href="http://apievangelist.com{{ post.url }}"/>
<updated>{{ post.atomdate | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
<content><![CDATA[{{ post.content | strip_html | xml_escape }}]]></content>
<id>http://apievangelist.com{{ post.url }}</id>
</entry>{% endif %}{% endfor %}
</feed>