houseinthewoods
6 days ago
I have fixed the errors in my rss aggregator, and also made it change between a single, two, and three column size based on screen width
houseinthewoods
3 weeks ago
I have added an RSS feed aggregator to my home page. Why? An unanswerable question
oleracea
3 weeks ago
That's so cool! I was thinking of trying to implement something like this too. How did you get it set up?
houseinthewoods
3 weeks ago
Thank you! It was pretty straightforward, although there aren't really any bells and whistles. Basically, I have an array of the URLs of all the feeds I want to read, then I fetch all of them, and when the Promise is all settled, I process each response, get the items out of the parsed XML (and I add a tag with the feed's name to each item), sort the list of items by date, then create html blocks for each item to add
houseinthewoods
3 weeks ago
to the rss-feed div element. It's kind of just parsing XML and constructing little html element blocks for each entry.
houseinthewoods
3 weeks ago
Oh wait, I just realized that the sorting by date is straight up not working right now... I will fix that
houseinthewoods
3 weeks ago
Finally fixing this page. I really got finish up my webgarden. And also make a button... probably should have done that first
I have added a guestbook that works (theoretically).