-
Notifications
You must be signed in to change notification settings - Fork 3
/
atom.xml
23 lines (22 loc) · 885 Bytes
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: null
title : Atom Feed
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.tagline | xml_escape }}</description>
<link>{{ site.url }}{{site.baseurl}}</link>
<atom:link href="{{ site.url }}{{site.baseurl}}/atom.xml" rel="self" type="application/rss+xml" />
{% for post in site.posts limit:20 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<link>{{ site.url }}{{ site.baseurl }}{{ post.url }}</link>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<guid isPermaLink="true">{{ site.purl }}{{site.baseurl}}{{ post.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>