aboutsummaryrefslogtreecommitdiff
path: root/atom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'atom.xml')
-rw-r--r--atom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/atom.xml b/atom.xml
new file mode 100644
index 0000000..13c57f0
--- /dev/null
+++ b/atom.xml
@@ -0,0 +1,26 @@
+---
+layout: null
+---
+
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom">
+
+ <title>{{ site.title }}</title>
+ <link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/>
+ <link href="{{ site.url }}{{ site.baseurl }}/"/>
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
+ <id>{{ site.url }}</id>
+ <author>
+ <name>{{ site.author.name }}</name>
+ <email>{{ site.author.email }}</email>
+ </author>
+
+ {% for item in site.site_listings %}
+ <entry>
+ <title>{{ item.pageurl }} - {{ item.size }} kb</title>
+ <link href="https://{{ item.pageurl }}"/>
+ <id>https://{{ item.pageurl }}</id>
+ </entry>
+ {% endfor %}
+
+</feed>