<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:dcterms="http://purl.org/dc/terms/" xmlns:ov="http://open.vocab.org/terms/" version="1.0">
    <xsl:output method="xml"/>

    <xsl:template match="/">
        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
            xmlns:dcterms="http://purl.org/dc/terms/" xmlns:ov="http://open.vocab.org/terms/">
            <xsl:apply-templates select="//school"/>
        </rdf:RDF>
    </xsl:template>

    <xsl:template match="school">
        <xsl:variable name="id" select="@id"/>
        <ov:UnivSchool
            rdf:about="{concat('http://library.hud.ac.uk/data/usagedata/schools.xml#' , $id )}">
            <dcterms:title>
                <xsl:value-of select="text()"/>
            </dcterms:title>
        </ov:UnivSchool>
    </xsl:template>

    <xsl:template match="*"/>

</xsl:stylesheet>
