RSS

https://lakespirit.love/rss.xml

Since a lot of people who I've shown my blog to have stared at this with a baffled "what's an are ess ess" intonation; I'm gonna do my best to explain the deal as simply as possible. It is sorta like making your own social media timeline, except you get to manually centralize a bunch of decentralized types of websites. They can also provide more traditional push notification/email approaches to finding out about new content. so basically this is the dont forget to press the subscribe button and ring the bell page hello
It is quite important to know about, if you're trying to familiarize yourself with this whole "blogging revival era" atmosphere.

Anyways: if you're purely a reader, you don't need to read anymore than this. You can use it - you're safe! BUT. If you are a blogger, reading this and thinking "this is scawwy..but I want one. How do I make one?", rest easy. Some hosters will have automatic RSS enabled, such as Hugo (so i've heard), but for us Zonelets users, we write this shit manually. Thankfully, it's basically as simple as making a .xml file in neocities itself (or if you're self-hosting, then like, notepad++), and then filling out the following layout:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>This section is about the name and information of the blog. Put the name here</title>
<description>Fill this</description>
<link>Your website here</link>
<lastBuildDate>X MonthX, 20XX 01:00 -400</lastBuildDate>
<ttl>60</ttl>

<item>
<title>This is an individual article. copy and paste this block as many times as necessary. </title>
<description>Could be a description, could also just be the first few sentences</description>
<link>Article liink</link>
<pubDate>X MonthX, 20XX 01:00 -400</pubDate>
</item>


</channel>
</rss>

 

 

And then with that filled out, you slap in in an xml file, link it somewhere, and RSS users are as good to go :3

(Like many things on this site) I am blatantly stealing this structure from Faea's blog, where she goes into detail on how to implement this stuff for beginners