From 58ca81524000b6e9ccd7e1de8bcba477dc6b9bc4 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Mon, 16 Jul 2018 16:23:51 +0200 Subject: Update feed.xml to atom.xml --- atom.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 atom.xml (limited to 'atom.xml') diff --git a/atom.xml b/atom.xml new file mode 100644 index 0000000..e3395a1 --- /dev/null +++ b/atom.xml @@ -0,0 +1,31 @@ +--- +layout: null +--- +{% assign documents = site.documents | where: 'feed', true | sort: 'date' | reverse %} + + {{ site.url }}{{ site.baseurl }}/ + {{ site.title | xml_escape }} + {{ site.description | strip | xml_escape }} + {{ site.time | date_to_xmlschema }} + + + + {{ site.author }} + {{ site.email }} + + Jekyll{% for post in documents limit:10 %} + + {{ site.url }}{{ site.baseurl }}{{ post.url }} + {{ post.title | xml_escape }} + + {{ site.author }} + {{ site.email }} + + {{ post.date | date_to_xmlschema }} + {% if post.description %} + {{ post.description | strip | xml_escape }}{% endif %} + {{ post.content | strip_html }}{% for tag in post.tags %} + {% endfor %}{% for cat in post.categories %} + {% endfor %} + {% endfor %} + -- cgit v1.1