webbed-site/atom.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2024-09-26 12:47:17 -05:00
---
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>
2024-11-15 17:11:28 -06:00
2024-11-15 17:15:13 -06:00
<!-- Combine blog posts and updates -->
{% assign updates_posts = site.collections.updates.docs %}
{% if updates_posts == nil %}
{% assign updates_posts = [] %}
{% endif %}
2024-11-15 17:11:28 -06:00
{% assign all_posts = site.posts | concat: updates_posts %}
2024-11-15 17:01:51 -06:00
{% assign sorted_posts = all_posts | sort: 'date' %}
{% for post in sorted_posts %}
2024-09-26 12:47:17 -05:00
{% unless post.draft %}
<item>
<title>{{ post.title | xml_escape }}</title>
2024-11-15 17:01:51 -06:00
<category>{{ post.collection }}</category>
2024-09-26 12:47:17 -05:00
<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>
2024-11-15 17:08:16 -06:00
</rss>
2024-11-15 17:15:13 -06:00
</rss>