RSS Feeds

RSS Feeds are .xml / .atom / etc.. files! they keep YOU updated! Like an .atom file.

Today, you are gonna learn how to display one. because why not? we need our vistors to feel nice.

first, get notepad+++ or any notepad that supports the XML language.

then, modify and paste the template below:

here you see your sitename, desc, updates, and more. just copy paste the code for a new update!

note 1: the date of each item is the pubDate aka published date. it has to be formatted as shown in the code or you will get an error. the time of the item pubDate is configured using your timezone. you'll have to check your time zone in order to put the correct value!

edit 1: you can also use this time stamp generator to generate your pubDate, just make sure to copy paste the one that says RFC822.

And yes, you can display html stuff. but you have to use those ugly html entites. like which is pretty ugly tbh

once you have your rss.xml done you need to validate it using something like w3c's feed validation service. this is an important step since you wanna make sure your rss.xml is not causing any errors when being put into a reader.

once you get a vaild rss your good to go

note 1: link to your rss.xml file somewhere on your page so people know you have an RSS feed.

ok, now your wondering: how in the world do i display my xml file? well you have two options.

one: manually use javascript to display it

two: third party rss displayers

i prefer two for me because first: it easy, second: it's good. i like rss 2 html since you can customize it with css stuff and it's super cool.

but if your not lazy do the first one. idk how to. you gotta find out yourself.

Go back?