summaryrefslogtreecommitdiff
path: root/feed.xml
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-07-16 16:23:51 +0200
committerPatrick Spek <p.spek@tyil.nl>2018-07-16 16:25:35 +0200
commit58ca81524000b6e9ccd7e1de8bcba477dc6b9bc4 (patch)
tree1ce6dc924b95f2fd5e172f4898c7dc628733bba4 /feed.xml
parent008088e899c753cedaa8d8af79fc9b05823f95c9 (diff)
Update feed.xml to atom.xml
Diffstat (limited to 'feed.xml')
-rw-r--r--feed.xml26
1 files changed, 0 insertions, 26 deletions
diff --git a/feed.xml b/feed.xml
deleted file mode 100644
index d7f77cc..0000000
--- a/feed.xml
+++ /dev/null
@@ -1,26 +0,0 @@
----
-layout: null
----
-{% assign documents = site.documents | where: 'feed', true | sort: 'date' | reverse %}<?xml version="1.0" encoding="UTF-8"?>
-<rss version="2.0" xmlns="http://www.w3.org/2005/Atom">
- <id>{{ site.url }}{{ site.baseurl }}</id>
- <title>{{ site.title | xml_escape }}</title>
- <description>{{ site.description | strip | xml_escape }}</description>
- <updated>{{ site.time | date_to_xmlschema }}</updated>
- <link href="{{ site.url }}{{ site.baseurl }}" />
- <author>
- <name>{{ site.author }}</name>
- <email>{{ site.email }}</email>
- </author>
- <generator version="{{ jekyll.version }}">Jekyll</generator>{% for post in documents limit:25 %}
- <entry>
- <id>{{ post.id }}</id>
- <title>{{ post.title | xml_escape }}</title>
- <updated>{{ post.date | date_to_xmlschema }}</updated>
- <link rel="alternate" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" />{% if post.description %}
- <summary>{{ post.description | strip | xml_escape }}</summary>{% endif %}
- <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>{% for tag in post.tags %}
- <category term="{{ tag | xml_escape }}" />{% endfor %}{% for cat in post.categories %}
- <category term="{{ cat | xml_escape }}" />{% endfor %}
- </entry>{% endfor %}
-</rss>