<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:output method="html" encoding="ISO-8859-1"/>

  <xsl:template match="veranstaltung">
    <html>
      <body>
        <title><xsl:value-of select="@titel"/></title>
        <h1><xsl:value-of select="@titel"/></h1>
        <p>Dozenten:
        <xsl:apply-templates select="dozent"/>
      </p>
      <xsl:apply-templates select="zeit"/>
      <xsl:apply-templates select="raum"/>
      <hr/>
      <p>Alle Angaben ohne Gewähr</p>
    </body>
  </html>
</xsl:template>

<xsl:template match="dozent">
  <xsl:apply-templates select="name"/>
</xsl:template>

<xsl:template match="zeit">
  <p>  Uhrzeit: <em> <xsl:apply-templates/></em></p>
</xsl:template>

<xsl:template match="raum">
  <p>Raum: <em> <xsl:apply-templates/> </em></p>
</xsl:template>

</xsl:stylesheet>

