This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
the-flux-of-thought/_pages/feed.xml

46 lines
1.4 KiB
XML
Raw Normal View History

---
layout: null
permalink: feed.xml
---
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"/>
<link href="{{ site.baseurl | append: feed.xml }}" rel="self"/>
2015-09-08 19:30:20 +02:00
<rights>Copyright @
{{ site.time | date: '%Y' }},
{{ site.author.name | xml_escape }}</rights>
2015-09-08 19:30:20 +02:00
<icon>{{ site.baseurl }}/assets/favicon.png</icon>
<author>
<name>{{ site.author.name | xml_escape }}</name>
<uri>{{ site.baseurl }}</uri>
<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>
{% for post in site.posts %}
2015-09-08 19:30:20 +02:00
{% assign content = post.content | replace: "&#8617;", "&#8617;&#xfe0e;" %}
{% 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>
<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>