-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathatom.xml
31 lines (29 loc) · 1.26 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
31
---
layout: null
sitemap:
exclude: 'yes'
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[{{ site.title | cdata_escape }}]]></title>
<link href="{{ site.baseurl }}/atom.xml" rel="self"/>
<link href="{{ site.baseurl }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.baseurl }}/</id>
{% for author in site.authors %}
<author>
<name><![CDATA[{{ author[1].name | strip_html }}]]></name>
{% if author[1].email %}<email><![CDATA[{{ author[1].email }}]]></email>{% endif %}
</author>
{% endfor %}
<generator uri="http://jekyllrb.com/">Jekyll</generator>
{% for post in site.posts limit: 10 %}
<entry>
<title type="html"><![CDATA[{% if site.titlecase %}{{ post.title | titlecase | cdata_escape }}{% else %}{{ post.title | cdata_escape }}{% endif %}]]></title>
<link href="{{ site.baseurl }}{{ post.url }}?utm_source=RSS&utm_medium=RSS&utm_campaign={{ post.title | replace: ',','' | replace: ' ', '' | xml_escape }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.baseurl }}{{ post.id }}</id>
<content type="html"><![CDATA[{{ post.content | expand_urls: site.baseurl | cdata_escape }}]]></content>
</entry>
{% endfor %}
</feed>