@prefix page: . @prefix hd: . @prefix rdfs: . @prefix foaf: . @prefix dc: . page:homepage a foaf:Document ; hd:template "index.tmpl" ; hd:requires [ a hd:Datasource ; rdfs:seeAlso ; ] ; hd:requires [ a hd:Query ; dc:title "music" ; hd:query "SELECT ?album WHERE (?i rdf:type rss:item),(?i rss:title ?album) USING rdf FOR ,rss FOR " ; hd:sort "" ] ; hd:requires [ a hd:Query ; dc:title "entries" ; hd:query "SELECT ?title,?date,?description WHERE (?item rdf:type foaf:Document) (?item dc:title ?title) (?item dc:date ?date) (?item dc:description ?description) USING rdf FOR , foaf FOR , dc FOR " ; hd:sort "date" ] ; .