gremlin.neocities


RSS Feeds (Page 2)


This page contains information about how to make RSS Feeds.

If you would like something added or fixed, please send me a email at gremlin6482@gmail.com

Introduction


In order to make a RSS Feed you need three things, a text editor, a XML document, and a website. Below is a template for you to use. The text within elements explains what they do and should be deleted.

RSS Template


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

<title>feed title text</title>
    <description>feed description</description>
    <link>website url</link>
    <lastBuildDate>Place a RFC 2822 timestamp from timestampgenerator.com</lastBuildDate>
    <ttl>60</ttl>
  
    <item>
        <title>post title text</title>
        <description>
        main text
        </description>
        <link>webpage url</link>
        <pubDate>Place a RFC 2822 timestamp from timestampgenerator.com</pubDate>
    </item>

    </channel>
</rss>

Miscellaneous Info


Enable HTML Elements

If you place <![CDATA[]]> inside a description element, you can enable the usage of HTML elements.

Example:

<description>
    <![CDATA[ 
    <h1>Look at this cool moth!</h1><br>
    <img src="https://gremlin.neocities.org/images/irl/moth.jpg" title="moth" width="500">
    ]]>
</description>