RSS!

I finally sat down and spent 20 minutes researching making RSS feeds. They’re super simple, just a little XML:

<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title></title>
		<description></description>
		<link></link>
		<item>
			<title></title>
			<description></description>
			<link></link>
		</item>
	</channel>
</rss>

So you make a new item set for each update. You can have multiple channels per file for things like blog posts and blog comments. You can also link multiple RSS files in the head of the HTML to a similar purpose.

So now ryliejamesthomas.net, blueberrysoft.ryliejamesthomas.net and blueberrysoft.ryliejamesthomas.net/web-log all have RSS feeds.


Also I remembered that I had Google Analytics code on a bunch of websites so I cancelled that gross shit.

Tags: ,

One Response to “RSS!”

  1. […] So I’ve been learning a bit more about RSS syntax, and wanted to update the previous post I made. […]

Leave a Reply