Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/freerdp.github.io.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Miklautz <roman.miklautz@thincast.com>2016-03-03 16:11:57 +0300
committerBernhard Miklautz <bernhard.miklautz@thincast.com>2016-03-03 16:11:57 +0300
commit1932d18f24824f12ff7665d3d115272a49b9e84b (patch)
tree37ecf7a3f7e33097d99adc80a8a0f8c3798964f7 /atom.xml
parent1b7f4025f5ae371c90652ff1f41c7230a9c649ac (diff)
Initial import of the old website
Converted from wordpress to jekyll
Diffstat (limited to 'atom.xml')
-rw-r--r--atom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/atom.xml b/atom.xml
new file mode 100644
index 0000000..7de7307
--- /dev/null
+++ b/atom.xml
@@ -0,0 +1,25 @@
+---
+layout: null
+---
+
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <title>{{ site.name }}</title>
+ <link href="{{ site.url }}/atom.xml" rel="self" />
+ <link href="{{ site.url }}/"/>
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
+ <id>{{ site.url }}</id>
+ <author>
+ <name>{{ site.author.name }}</name>
+ <email>{{ site.author.email }}</email>
+ </author>
+ {% for post in site.posts %}
+ <entry>
+ <title>{{ post.title }}</title>
+ <link href="{{ site.url }}{{ post.url }}" />
+ <updated>{{ post.date | date_to_xmlschema }}</updated>
+ <id>{{ site.url }}{{ post.id }}</id>
+ <content type="html">{{ post.content | xml_escape }}</content>
+ </entry>
+ {% endfor %}
+</feed>