That's basically my question. I need to be able to get at the feeds - to generate a completely seperate page for them, but I don't see an easily accessible or decodable list anywhere.
They're located in a file called content/system/config/feeds.data. This is an array, which is serialised and then base64 encoded, so, you'll need something like: $feeds = unserialize(base64_decode(file_get_contents('./lilina/content/system/config/feeds.data')));
There's a function called lilina_load_feeds() in file-functions.php that takes a filename as a parameter and returns an array this way, so you can use that. It also works independent of Lilina.