feat: add rss feed to glance

This commit is contained in:
Mohammad Rafiq 2025-04-21 21:16:30 +08:00
parent 4fdcaac75e
commit 1dbe03d460
No known key found for this signature in database

View file

@ -22,7 +22,7 @@ let
]; ];
} }
{ {
title = "Feed"; title = "Newsletters";
type = "rss"; type = "rss";
style = "detailed-list"; style = "detailed-list";
feeds = [ feeds = [
@ -34,10 +34,21 @@ let
title = "This Week in Rust"; title = "This Week in Rust";
url = "https://this-week-in-rust.org/rss.xml"; url = "https://this-week-in-rust.org/rss.xml";
} }
];
}
{
title = "Blogs";
type = "rss";
style = "detailed-list";
feeds = [
{ {
title = "Makefile.feld"; title = "Makefile.feld";
url = "https://blog.feld.me/feeds/all.atom.xml"; url = "https://blog.feld.me/feeds/all.atom.xml";
} }
{
title = "Xe Iaso";
url = "https://xeiaso.net/blog.rss";
}
]; ];
} }
]; ];