forked from snowplow/snowplowanalytics.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
30 lines (30 loc) · 1.24 KB
/
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
24
25
26
27
28
29
30
---
title : Atom Feed
---
<?xml version="1.0" encoding="UTF-8"?>
<feed version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<title>{{ site.name | xml_escape }}</title>
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
<link href="{{ site.production_url }}/{{ site.atom_path }}" rel="self"/>
<link>{{ site.production_url }}</link>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.production_url }}</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
{% for post in site.posts limit:site.feed_total %}
<entry>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<updated>{{ post.date | date_to_rfc822 }}</updated>
<link href="{{ site.production_url }}{{ post.url }}" />
<title>{{ post.title | xml_escape }}</title>
<id>{{ site.production_url }}/{{ post.id }}</id>
{% if post.excerpt %}
<description>{{ post.excerpt | xml_escape }}</description>
{% else %}
<description>{{ post.content | xml_escape }}</description>
{% endif %}
</entry>
{% endfor %}
</feed>