blob: e40cf9187f4193b1d707229ab5ce529c4289d49e (
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
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rss091: <http://purl.org/rss/1.0/modules/rss091#> .
@prefix rss: <http://purl.org/rss/1.0/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix atom: <http://www.w3.org/2005/Atom> .
<index.atom>
dc:date "2009-01-01T00:00:00-00:00" ;
rss:link "http://www.example.org/blog/index.atom" ;
rss:title "Kim Doe" ;
a rss:channel ;
atom:author [
a atom:Author ;
atom:name "Kim Doe"
] ;
atom:id <index.atom> ;
atom:link [
a atom:Link ;
atom:href <index.atom> ;
atom:rel "self"
] ;
atom:title "Kim Doe" ;
atom:updated "2009-01-01T00:00:00-00:00" .
|