aboutsummaryrefslogtreecommitdiff
path: root/atom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'atom.xml')
-rw-r--r--atom.xml22
1 files changed, 0 insertions, 22 deletions
diff --git a/atom.xml b/atom.xml
deleted file mode 100644
index b50e1c7..0000000
--- a/atom.xml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-layout: none
----
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom">
- <title>{{ site.title | xml_escape }}</title>
- <link href="{{ site.url | append: site.baseurl | append: '/atom.xml' }}"/>
- <updated>{{ site.time | date_to_xmlschema }}</updated>
- <id>{{ site.url | append: site.baseurl | append: '/atom.xml' }}</id>
- <author>
- <name>{{ site.author.name }}</name>
- </author>
- {% for post in site.posts limit:10 %}
- <entry>
- <title>{{ post.title | xml_escape }}</title>
- <link href="{{ post.url | prepend: site.baseurl | prepend: site.url }}"/>
- <id>{{ post.id }}</id>
- <updated>{{ post.date | date_to_xmlschema }}</updated>
- <summary>{{ post.content | xml_escape }}</summary>
- </entry>
- {% endfor %}
-</feed>