<?xml version="1.0" encoding="utf-8"?> 

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
         xmlns:dc="http://purl.org/dc/elements/1.1/"
         xmlns:l="http://purl.org/rss/1.0/modules/link/"
         xmlns="http://purl.org/rss/1.0/"> 

    <channel rdf:about="http://example.org/rss.rdf">
        <title>Example Feed</title>
        <link>http://www.example.org</link>
        <description>Simply for the purpose of demonstration.</description>
        
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://example.org/item/"/>
            </rdf:Seq>
        </items>

        <!-- link to the french version of this website -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#alternate"
                l:type="application/rss+xml"
                l:title="French"
                l:lang="fr"
                rdf:resource="http://www.example.org/index-fr.rss"/>

        <!-- alternative RSS channels (dc:subject specific) -->

        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#topic"
                l:type="application/rss+xml"
                l:title="Linux"
                l:lang="en"
                rdf:resource="http://www.peerfear.org/rss/index-linux.rss"/>

        <!-- support WSDL service discovery for this channel -->

        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#service"
                l:type="http://schemas.xmlsoap.org/wsdl/"
                l:title="urn:reptile-search"
                l:lang="en"
                rdf:resource="http://www.peerfear.org/reptile/search/search.wsdl"/>

        <!-- linkage to additional RDF about this channel. -->

        <l:link l:rel="http://purl.org/rss/1.0/modules/proposed/subscription/"
                l:type="application/rdf+xml"
                l:title="Subscriptions"
                rdf:resource="http://www.peerfear.org/subscriptions.rdf"/>

    </channel>
    
    <item rdf:about="http://example.org/item/">
        <title>The Example Item</title> 
        <link>http://example.org/item/</link>

        <!-- permalink version of this item -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#permalink"
                l:type="text/html"
                rdf:resource="http://example.org/item/permalink"/>

        <!-- link to the french version of this website -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#alternate"
                l:type="text/html"
                l:title="French"
                l:lang="fr"
                rdf:resource="http://www.example.org/index-fr"/>

        <!-- link to the source used to inspire this link -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#source"
                l:type="text/html"
                l:title="Example source link"
                rdf:resource="http://www.cnn.com/2002/TECH/science/example"/>

        <!-- link to the RSS version of this topic -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#topic"
                l:type="application/rss+xml"
                l:title="Example"
                l:lang="en"
                rdf:resource="http://www.peerfear.org/rss/index-example.rss"/>

        <!-- link to the HTML version of this topic -->
        <l:link l:rel="http://purl.org/rss/1.0/modules/link/#topic"
                l:type="text/html"
                l:title="Example"
                l:lang="en"
                rdf:resource="http://www.peerfear.org/rss/index-example.html"/>

    </item> 
    
</rdf:RDF>