You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
697 B
Twig

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>{{ config.blog.title }}</title>
<description>{{ config.blog.description }}</description>
<link>{{ config.blog.link }}</link>
<ttl>1800</ttl>
{% for post in posts %}
<item>
<title>{{ post.meta.title }}</title>
<description>{{ post.meta.description }}</description>
<link>{{ config.blog.link }}post/{{ post.slug }}</link>
<guid isPermaLink="false">{{ post.slug }}</guid>
<pubDate>{{ post.meta.date.format('r') }}</pubDate>
</item>
{% endfor %}
</channel>
</rss>