Jamz💋's profile picture

Published by

published

Category: Technology

Utilize RSS [Please]


So as I'm building my Neocities, I've kinda been falling down rabbit holes regarding web revival and the IndieWeb. Learning new things like webring and what not. There's still a lot for me to learn it seems, but I do wanna express to everyone that has an independent blog or website to look into RSS.


It hurts my heart when I stumble on a cool site or blog, and it's extremely difficult for me to find the follow button, so I can follow them on neocities. Even worse when I can't find it at all. How do you expect people to come back to your site??


I already knew about RSS back when i was on spacehey, and you will see that symbol all around most of these retro revival sites. But what does it mean?


RSS Feed Symbol


RSS stands for Really Simple Syndication. A tool that sends updates from your favorite sites, to a single place. 

Handy for webmasters and bloggers, since people don't have to manually check your sites and handy for readers who want control over their newsfeed, and simply don't wanna lose sites to a sea of bookmarks.


How to add RSS


Below is a tutorial for webmasters and bloggers to add RSS. If you're wondering about RSS reader, I'll probably post about that later, but I personally use Inoreader. I do think there are other ways to add RSS but today we'll talk about adding it via coding (trust me it's not hard, don't stress)


Right now I'm going to be talking to the users of nekoweb and neocities. I plan on exploring RSS for wordpress and blogspot later on. 


If you use nekoweb or neocities, then your site should already come with a RSS. (I personally use neocities). It’s important to set up your own personal RSS that people can follow because when people follow you on neocities they are updated on all the little site changes, the moment you hit save. If you are a control freak like me and want to inform people of important updates, or want people to have different feeds for different things (ex. Subscribe here for bulletins, subscribe here for blogs) then you need too set up an RSS Feed. 


This is what my neocities RSS feed looks like, out of the box:

Ugly isn't it? We'll go over how to fix that -->

  1. Create a new file and label it rss.xml 

  2. Input the following code in that rss.xml: 


<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0">

<channel>

<title>The name of your RSS feed. This is what subscribers will see in their RSS reader</title>

<link>link to your site</link>

<description>Insert Description here like overall site updates blah blah blah</description>


</channel>

</rss>


Boom! you just created the foundation of your RSS feed. However we aren't done yet.

Notes:

  • <?xml version="1.0" encoding="UTF-8"?> --> this declares that this is an XML document, similar to writing <!DOCTYPE html>
  • And UTF allows emojis and non English letters to be written 
  1. Whenever you have a update you want too inform readers/followers about, then input the following above the end tags (</channel> </rss>):

<item>

<title>Website Version 1.2</title>

<link>https://jamzcreativecorner.neocities.org/blog/version-1-2</link>

<description>New website redesign, added gallery, improved mobile layout.</description>

<pubDate>Wed, 29 Jul 2026 10:00:00 GMT</pubDate>

</item>


That's it! Whenever you wanna post an update simply copy and paste <item> and everything beneath it, and adjust. 

Here’s is what it looks like after:






It’s always good to provide a link of the RSS Feed, so if someone wasn’t using inoreader then they can put it in a different reader (there are many different RSS readers)

Neocities RSS (default) - https://neocities.org/site/jamzcreativecorner.rss

Custom RSS - https://jamzcreativecorner.neocities.org/rss.xml 


Again if you are interested in web revival or have an independent site, please make use of the RSS Feed. And put the icon where people can see it. I wanna stay updated! Thanks for reading ❤️


(source - youtube video)

 
Side note - I was kinda in a rush to make this, so sorry for any spelling/grammar mistakes.


Edit: you can get really creative with rss feeds and readers. Again you're customizing your Newsfeed, so if you wanna be updated whenever anyone posts a new blog or forum that's possibe. You can even narrow it down to the topic, just be on the look out for the rss symbol. 

Kudos: 4

Comments

Displaying 3 of 3 comments ( View all | Add Comment )

(edited) Report

Favoriting this so I can set this up when I have the time! (Haven't worked on my website in months T_T)

Report

thank u sm for this! I always saw rss being mengtioned but had no idea what it was! def gonna add it to my website



Thanks for reading, please let me know if it goes well for you!

by Jamz💋; ; Report