-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatom.xml
26 lines (26 loc) · 1.05 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
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.name_full }}</title>
<subtitle><![CDATA[My name is {{ site.name_full }} and I am a thirty something full stack hacker with a passion for building tools that bring people together. Husband, father and the Chief Alchemist & Founder of Gravity Boulevard.]]></subtitle>
<link href="{{ site.domain }}/atom.xml" rel="self" />
<link href="{{ site.domain }}" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.domain }}</id>
<author>
<name>{{ site.name_full }}</name>
<email>{{ site.email }}</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.domain }}{{ post.url }}" />
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.domain }}{{ post.id }}</id>
<summary>{{ post.content | strip_html | truncatewords: 50 | xml_escape }}</summary>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>