1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <?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" encoding="utf-8" version="4.0" doctype-public="-//W3C//DTD HTML 4.01//FR" />
<xsl:template match="/">
<html>
<body>
<body bgcolor="navyblue" text="blue">
</body>
<head>
<title>CV Laurent </title>
</head>
<h3>
<strong><xsl:value-of select="cv/contact/surname"/>
</strong>
<strong><xsl:value-of select="cv/contact/name"/>
</strong>
</h3>
<xsl:value-of select="cv/contact/address"/>
<BR>
<xsl:value-of select="cv/contact/phone"/>
</BR>
<BR>
<a href="mailto:xx@wanadoo.fr"><xsl:value-of select="cv/contact/email"/></a>
</BR>
<BR>
<xsl:value-of select="cv/contact/nationality"/>
</BR>
<BR>
ne le : <xsl:value-of select="cv/contact/birthday"/>
</BR>
<h1>
<B>
<body text="blue">
</body>
<font color="white"><div align="center">Curriculum Vitae</div></font>
</B>
</h1>
</body>
</html>
</xsl:template>
<xsl:template match="IMAGE">
<img src="{@src}" />
</xsl:template>
</xsl:stylesheet> |