toc.rqg 424 Bytes
Newer Older
Maxime Lefrançois's avatar
Maxime Lefrançois committed
PREFIX fun: <http://w3id.org/sparql-generate/fn/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

BASE <https://saref.etsi.org/documentation/>

TEMPLATE <ontology/toc.rqg>( ?entity ) {
  before = "\n<ul class='hlist'>" ;
  BOX { "\n<li>"
    TEMPLATE {
      <function/hrefTitle.rqg>(fun:prefixedIRI(?entity),?label)
    } WHERE { ?entity rdfs:label ?label } LIMIT 1 . 
  "</li>" }
  ; after = "\n</ul>"
}