<?
xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="
html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<
html>
<head>
<META http-equiv="Content-Type" content="text/
html; charset=UTF-8"/>
</head>
<body>
<h2>Personaldaten</h2>
<xsl:for-each select="Personaldaten/Arbeitnehmer">
<xsl:variable name="Bild">
<xsl:value-of select="Foto"/>
</xsl:variable>
<img src="{$Bild}" style="border: 1px solid white" alt="Personalbild" align="left"/>
<p>
<xsl:value-of select="PersNr"/>
</p>
<p>
<xsl:value-of select="Anrede"/>
</p>
<p>
<xsl:value-of select="concat(Vorname,' ',Nachname)"/>
</p>
<p>
<xsl:value-of select="Strasse"/>
</p>
<p>
<xsl:value-of select="concat(Postleitzahl,' ',Ort)"/>
</p>
</xsl:for-each>
</body>
</
html>
</xsl:template>
</xsl:stylesheet>