Bestehende Anwendung modularisieren 1
<xsl:template match="/">
<html><body>
<xsl:apply-templates/>
</body></html>
</xsl:template>
<xsl:template match="listentitel">
<h1><xsl:value-of
select="."/></h1>
</xsl:template>
<xsl:template match="erstelldatum |
beschreibung">
<p><xsl:value-of
select="."/></p>
</xsl:template>