-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
30 lines (30 loc) · 1.16 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
---
permalink: /feed/index.html
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Andrés Botero’s writings</title>
<subtitle>Writings about code, life, and other good stuff by Andrés Botero.</subtitle>
<link href="http://{{ site.domain }}/feed/" rel="self" />
<link href="http://{{ site.domain }}/writings/" />
<id>http://{{ site.domain }}/writings/</id>
<!-- date: "%Y-%m-%dT%H:%M:%SZ" -->
<updated>{{ site.time | date_to_xmlschema }}</updated>
<author>
<name>Andrés Botero</name>
</author>
{% for writing in site.posts %}
<entry>
<!-- RFC 4151 compliant tag -->
<id>tag:{{ site.domain }},{{ writing.date | date: "%Y-%m-%d" }}:{{ writing.id | replace: "#", "/" }}</id>
<title>{{ writing.title }}</title>
<link href="http://{{ site.domain }}{{ writing.url }}" />
<updated>{{ writing.date | date_to_xmlschema }}</updated>
<summary>{{ writing.description }}</summary>
{% for category in post.categories %}
<category scheme="http://{{ site.domain }}/tag" term="{{ category }}"/>
{% endfor %}
<content type="html">{{ writing.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>