-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
29 lines (25 loc) · 1.07 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
---
title : Atom Feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">{{ site.title }}</title>
<link type="application/atom+xml" href="{{ site.liveUrl }}atom.xml" rel="self"/>
<link href="{{ site.liveUrl }}"/>
<updated>{{ site.time | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
<id>{{ site.liveUrl }}</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
<rights type="text">Copyright © {{ site.time | date: "%Y" }} {{ site.author }}. All rights reserved.</rights>
{% for post in site.data.blog %}
<entry>
<title>{{ post.name | xml_escape }}</title>
<link rel="alternate" type="text/html" href="{{ site.liveUrl }}{{ post.url }}?utm_source=RSS&utm_medium=RSS&utm_campaign={{ post.title | replace: ',','' | replace: ' ', '' | xml_escape }}" />
<published>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ post.id }}</id>
</entry>
{% endfor %}
</feed>