2017-02-12 00:58:42 +01:00
|
|
|
---
|
|
|
|
layout: null
|
2017-04-09 19:37:47 +02:00
|
|
|
permalink: feed.xml
|
2017-02-12 00:58:42 +01:00
|
|
|
---
|
2015-09-08 18:10:35 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
|
2015-09-08 19:30:20 +02:00
|
|
|
<title>{{ site.title | xml_escape }}</title>
|
|
|
|
<subtitle>{{ site.description | xml_escape }}</subtitle>
|
|
|
|
<link href="{{ site.baseurl }}/" rel="alternate"/>
|
2017-02-12 00:58:42 +01:00
|
|
|
<link href="{{ site.baseurl | append: feed.xml }}" rel="self"/>
|
2015-09-08 19:30:20 +02:00
|
|
|
<rights>Copyright @
|
|
|
|
{{ site.time | date: '%Y' }},
|
2020-01-26 13:35:56 +01:00
|
|
|
{{ site.author.name | xml_escape }}</rights>
|
2015-09-08 19:30:20 +02:00
|
|
|
<icon>{{ site.baseurl }}/assets/favicon.png</icon>
|
|
|
|
|
|
|
|
<author>
|
2020-01-26 13:35:56 +01:00
|
|
|
<name>{{ site.author.name | xml_escape }}</name>
|
2017-04-14 23:37:57 +02:00
|
|
|
<uri>{{ site.baseurl }}</uri>
|
2020-01-26 13:35:56 +01:00
|
|
|
<email>{{ site.author.email | xml_escape }}</email>
|
2015-09-08 19:30:20 +02:00
|
|
|
</author>
|
|
|
|
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.baseurl }}/</id>
|
|
|
|
<generator version="{{ jekyll.version }}">Jekyll</generator>
|
|
|
|
|
2017-04-14 23:37:57 +02:00
|
|
|
{% for post in site.posts %}
|
2015-09-08 19:30:20 +02:00
|
|
|
|
|
|
|
{% assign content = post.content | replace: "↩", "↩︎" %}
|
|
|
|
{% assign content = content | replace: "data-lang", "lang" %}
|
|
|
|
{% assign content = content | replace: "<mark>", "<b>" | replace: "</mark>", "</b>" %}
|
|
|
|
|
|
|
|
<entry>
|
|
|
|
<title type="html">{{ post.title | xml_escape }}</title>
|
|
|
|
<id>{{ post.url | prepend: site.baseurl }}</id>
|
|
|
|
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
2017-04-14 23:37:57 +02:00
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
2015-09-08 19:30:20 +02:00
|
|
|
<content type="html" xml:lang="en">
|
|
|
|
<![CDATA[{{ content }}]]>
|
|
|
|
</content>
|
|
|
|
</entry>
|
|
|
|
|
|
|
|
{% endfor %}
|
2015-09-08 18:10:35 +02:00
|
|
|
|
|
|
|
</feed>
|