Files
archived-doctrine-website/source/atom.xml
2018-08-24 04:50:22 +01:00

30 lines
1.0 KiB
XML

---
permalink: /atom.xml
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[{{ site.title }}]]></title>
<link href="{{ site.url }}/atom.xml" rel="self" />
<link href="{{ site.url }}/" />
<updated>{{ site.calculated_date | date('c') }}</updated>
<id>{{ site.url }}/</id>
{% if site.author or site.email %}
<author>
{% if site.author %}<name><![CDATA[{{ site.author }}]]></name>{% endif %}
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
</author>
{% endif %}
{% for post in get_blog_posts()|slice(0, 10) %}
<entry>
<title type="html"><![CDATA[{{ post.parameters.title }}]]></title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date|date('c') }}</updated>
<id>{{ site.url }}{{ post.url }}</id>
<content type="html"><![CDATA[{{ post.contents|markdown|raw }}]]></content>
</entry>
{% endfor %}
</feed>