From 6789d917783f87b57568d6b947072114a1654d98 Mon Sep 17 00:00:00 2001 From: onomanapeia Date: Fri, 15 Nov 2024 17:11:28 -0600 Subject: [PATCH] rss fix --- atom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/atom.xml b/atom.xml index 6ab0c35..98e8718 100644 --- a/atom.xml +++ b/atom.xml @@ -7,8 +7,9 @@ layout: none peachmoon.moe blog and updates site updates and blog posts by mana {{ site.url }} - - {% assign all_posts = site.posts | concat: site.collections.updates.docs %} + + {% 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 %}