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>
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{% unless post.draft %}
|
|
|
|
<item>
|
|
|
|
<title>{{ post.title | xml_escape }}</title>
|
|
|
|
<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 %}
|
2024-11-13 22:02:47 -06:00
|
|
|
|
|
|
|
{% for update in site.updates %}
|
|
|
|
<item>
|
|
|
|
<title>{{ update.title | xml_escape }}</title>
|
|
|
|
<description>{{ update.content | xml_escape }}</description>
|
|
|
|
<pubDate>{{ update.date | date_to_xmlschema }}</pubDate>
|
2024-11-15 14:29:06 -06:00
|
|
|
<guid isPermaLink="true">{{ update.url | prepend: site.url }}</guid>
|
2024-11-13 22:02:47 -06:00
|
|
|
</item>
|
|
|
|
{% endfor %}
|
2024-09-26 12:47:17 -05:00
|
|
|
</channel>
|
|
|
|
</rss>
|