<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:ga="http://www.goarticles.com/rss/">
<xsl:variable name="self" select="/rss/channel/ga:rsslink" />
<xsl:template match="/rss">
<html>
    <head>
        <title><xsl:value-of select="channel/title"/></title>
        <meta http-equiv="content-type" content="text/html; charset=utf-" />
        <link href="/css/rss.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
        <div id="content">
            <h1><xsl:value-of select="channel/title" /></h1>
            <p>This is the RSS feed for your search.  When you subscribe to
            this RSS feed from GoArticles, you'll get the latest search
            results for this query delivered to your RSS Reader.  You can
            subscribe to any number of RSS feeds and view them all in your RSS
            reader without re-running your search queries.</p>
            <p>You can subscribe to this feed by copying the URL and pasting
            it into your RSS reader:
                <div class="rsslink"><xsl:value-of select="channel/ga:rsslink_formatted" /></div>
            </p>
            <p>Or, alternatively you can click on any one of the following
            buttons to add the RSS feed to a variety of online providers:</p>
            <div class="providers">
                <a href="http://add.my.yahoo.com/rss?url={$self}">
                    <img src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif" width="91" height="17" alt="Add to Yahoo!" />
                </a>
                <a href="http://fusion.google.com/add?feedurl={$self}">
                    <img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google" />
                </a>
                <a href="http://my.msn.com/addtomymsn.armx?id=rss&amp;ut={$self}">
                    <img src="http://sc.msn.com/c/rss/rss_mymsn.gif" width="71" height="14" alt="Add to My MSN" />
                </a>
                <a href="http://www.thefreedictionary.com/_/hp/AddRSS.aspx?{$self}" title="Add to The Free Dictionary">
                    <img src="http://img.tfd.com/hp/addToTheFreeDictionary.gif" width="91" height="17" alt="Add to The Free Dictionary" />
                </a>
            </div>
            <div class="articles"><ol><xsl:apply-templates select="channel/item"/></ol>
            </div>
            <div class="copyright">
                Jayde Online, Inc. Copyright 2006, All Rights Reserved
            </div>
        </div>
    </body>
</html>
</xsl:template>

<xsl:template match="item">
<li>
    <div class="title"><a href="{link}">
        <xsl:value-of select="title" />
    </a></div>
    <div class="author">by <xsl:value-of select="author" /></div>
    <div class="pubDate"><xsl:value-of select="pubDate" /></div>
    <div class="description"><xsl:value-of select="description" /></div>
</li>
</xsl:template>
</xsl:stylesheet>
