Anwenden von Templates

<xsl:template match="/" priority="1"
              name="wurzel" mode="mode1">
  <html>
    <head>
      <title>Beispiel</title>
    </head>
    
    <body>
      <xsl:apply-templates select="div" mode="mode2"/>
    </body>
  </html>
</xsl:template>

<xsl:template match="div" mode="mode2">
  <b><xsl:apply-imports/></b>
</xsl:template>