<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Dizzy's Bunny Hell Updates</title>
  <updated>2024-03-14T23:20:31+00:00</updated>
  <id>https://doctordizzy.space/feed.xml</id>	
  <author>
    <name>Dizzy</name>
    <email>doctordizzy@32bit.cafe</email>
    <uri>https://doctordizzy.space</uri>
  </author>
  <link rel="self" href="https://doctordizzy.space/feed.xml" />
  <link rel="alternate" href="https://doctordizzy.space/" />

<entry>
	<title>Oh yeah I have a website</title>
	<published>2025-03-23T03:24:48+00:00</published>
	<link href="https://doctordizzy.space"/>
	<content type="xhtml">
	<div xmlns="http://w3.org/1999/xhtml">
	Oh shit I have a website. Fixed some things, didn't do much else. Bigger update later, I promise. I pinkie promise. I super duper promise.
	</div>
	</content>
</entry>

<entry>
    <title>Big Update!</title>
    <published>2024-03-14T23:24:31+00:00</published>
    <link href="https://doctordizzy.space"/>
    <content type="xhtml">
    <div xmlns="http://www.w3.org/1999/xhtml">	
    Huge update! Everything's revamped! Check it out! Aaaaa!!!
    </div>
    </content>
</entry>
</feed>

  
  <!-- 

    <entry>														... the "post", if you will. do one for each entry. 
        <title>title</title>									...	the title that will show up in the feed reader. i.e. name of article
        <published>YYYY-MM-DDThh:mm:ss-08:00</published>		...	when this was published. see the section labeled "DATETIME" for more info.
        <updated>YYYY-MM-DDThh:mm:ss-08:00</updated>			...	only if an article is updated after publishing.  
        <link href="https://yoursite.tld/article.html"/>		... a link to this article/post on the web.
 			<content type="xhtml">								... xhtml is, in laypeople's terms, html that plays nice within xml. 
			<div xmlns="http://www.w3.org/1999/xhtml">			... i don't really understand why this part is important, but i can't get it to work with just "<div>" so  ¯\_(ツ)_/¯
            		
							...	The body of your article goes here. 
							Remember that there are a few differences between XHTML (basically xml-friendly html) and HTML. 
							I'm still sort of winging it here, but from what I gather, there are two relevant ones:

						- ALL elements must be closed. There are no self-closing tags.
 
							INSTEAD OF THIS: <img src="lmao.png" alt="remember to use alt tags for accesibility">, <br>, <hr>		
							DO THIS: <img src="lol.png" alt="notice the forward slash" />, <br />, <hr />
						
						- Tags are case-sensitive. 

							INSTEAD OF THIS: <P>, <Br />
 							DO THIS:   <p>, <br /> 
			</div>											... remember
        </content>											... to close
    </entry>												... your tags!

</feed>														... end of document


 ///////////////////// T E M P L A T E S [cleaned up]

...feed

<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>(FEED URL}</id>
  <title>{TITLE}</title>
  <updated>{DATETIME}</updated>
  <author>
    <name>{NAME}</name>
    <email>{EMAIL}</email>
    <uri>{YOUR WEB ADDRESS}</uri>
  </author>
  <link rel="self" href="{FEED URL}" />
  <link rel="alternate" href="{WEBSITE FOR FEED}" />

			 entries go here 

</feed>

...entries 

    <entry>
        <title>{TITLE}</title>
        <published>YYYY-MM-DDThh:mm:ss-08:00</published>
        <link href="{URL}"/>
 			<content type="xhtml">
			<div xmlns="http://www.w3.org/1999/xhtml">
			 <p>{CONTENT}</p>
			</div>
        </content>
    </entry>

//////////////////// R E F E R E N C E S

...datetime

 			src: https://www.w3.org/TR/NOTE-datetime



			 Year:
 		   	  YYYY (eg 1997)
 			 Year and month:
 		   	  YYYY-MM (eg 1997-07)
 			 Complete date:
 		   	  YYYY-MM-DD (eg 1997-07-16)
 			 Complete date plus hours and minutes:
 		   	  YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
			 Complete date plus hours, minutes and seconds:
 		   	  YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
			 Complete date plus hours, minutes, seconds and a decimal fraction of a second
 		   	  YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)

			Note that the "T" appears literally in the string, to indicate the beginning of the time element, as specified in ISO 8601.		

			 YYYY = four-digit year
			 MM   = two-digit month (01=January, etc.)
			 DD   = two-digit day of month (01 through 31)
			 hh   = two digits of hour (00 through 23) (am/pm NOT allowed)
			 mm   = two digits of minute (00 through 59)
			 ss   = two digits of second (00 through 59)
			 s    = one or more digits representing a decimal fraction of a second
			 TZD  = time zone designator (Z or +hh:mm or -hh:mm)

			Times are expressed in local time, together with a time zone offset in hours and minutes. 
			A time zone offset of "+hh:mm" indicates that the date/time uses alocal time zone which 
			is "hh" hours and "mm" minutes ahead of UTC. A time zone offset of "-hh:mm" indicates
 			that the date/time uses a local time zone which is "hh" hours and "mm" minutes behind UTC.

	

			(so basically, may 24, 2022 at 7:30 pm Pacific Daylight Time is 2022-05-24T19:30:12-07:00)

 

    -->