mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 15:55:04 +00:00
20 lines
601 B
XML
20 lines
601 B
XML
|
---
|
||
|
layout: minify
|
||
|
---
|
||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<title>{{ site.name }} - News</title>
|
||
|
<subtitle>{{ site.description }}</subtitle>
|
||
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||
|
<link href="{{ site.url }}"/>
|
||
|
<link href="{{ site.url }}feed.xml" rel="self"/>
|
||
|
{% for post in site.posts %}
|
||
|
<entry>
|
||
|
<title>{{ post.date | date: "%B %e, %Y" }}</title>
|
||
|
<content>{{ post.content | xml_escape }}</content>
|
||
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
||
|
<link href="{{ site.url }}news/"/>
|
||
|
</entry>
|
||
|
{% endfor %}
|
||
|
</feed>
|