25 lines
796 B
Plaintext
25 lines
796 B
Plaintext
---
|
|
permalink: feed/atom.xml
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>{{ metadata.title }}</title>
|
|
<subtitle>{{ metadata.subtitle }}</subtitle>
|
|
<link href="{{ metadata.feedurl }}" rel="self"/>
|
|
<link href="{{ metadata.url }}"/>
|
|
<updated>{{ collections.post | lastUpdatedDate }}</updated>
|
|
<id>{{ metadata.id }}</id>
|
|
<author>
|
|
<name>{{ metadata.author.name }}</name>
|
|
<email>{{ metadata.author.email }}</email>
|
|
</author>
|
|
{% for post in collections.post %}
|
|
<entry>
|
|
<title>{{ post.data.title }}</title>
|
|
<link href="{{ metadata.url }}{{ post.url }}"/>
|
|
<updated>{{ post.date | rssDate }}</updated>
|
|
<id>{{ metadata.url }}{{ post.url }}</id>
|
|
<content type="html">{{ post.templateContent }}</content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed> |