Imported old code.

This commit is contained in:
Johannes Findeisen 2023-08-22 03:14:43 +02:00
commit 89d94c38b6
243 changed files with 26457 additions and 0 deletions

27
news/atom.xml Normal file
View file

@ -0,0 +1,27 @@
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Linspector - News Feed - linspector.org</title>
<link href="http://linspector.org/news/atom.xml" rel="self"/>
<link href="http://linspector.org"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://linspector.org/</id>
<author>
<name>The Linspector Team (Johannes Findeisen)</name>
<email>hanez@linspector.org</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://linspector.org{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://linspector.org{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>