summaryrefslogtreecommitdiff
path: root/sample/rss/content.xml
blob: 5eb192ec7dde23e1a145b3bcde8163c97a96dc07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?> 

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  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 resource="http://example.org/item/" />
      </rdf:Seq>
    </items>
    
  </channel>

  <item rdf:about="http://example.org/item/">
    <title>The Example Item</title> 
    <link>http://example.org/item/</link>
    <content:encoded><![CDATA[<p>What a <em>beautiful</em> day!</p>]]></content:encoded>
  </item> 
</rdf:RDF>