webbed-site/atom.xml
onomanapeia 6789d91778 rss fix
2024-11-15 17:11:28 -06:00

29 lines
No EOL
1,020 B
XML

---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>peachmoon.moe blog and updates</title>
<description>site updates and blog posts by mana</description>
<link>{{ site.url }}</link>
{% assign updates_posts = site.collections.updates.docs | default: [] %}
{% assign all_posts = site.posts | concat: updates_posts %}
{% assign sorted_posts = all_posts | sort: 'date' %}
{% for post in sorted_posts %}
{% unless post.draft %}
<item>
<title>{{ post.title | xml_escape }}</title>
<category>{{ post.collection }}</category>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<link>{{ post.url | prepend: site.url }}</link>
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
</item>
{% endunless %}
{% endfor %}
</channel>
</rss>
</rss>