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="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title>Bonjour</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#pied_de_page
{
text-align: center;
border: 1px solid blue;
}
</style>
</head>
<body>
<div id="pied_de_page">
<p>
<xsl:apply-templates select="//pied_de_page/*" />
</p>
</div>
</body>
</html>
</xsl:template>
<xsl:template match="gras">
<b><xsl:apply-templates select="@* | node()"/></b>
</xsl:template>
<xsl:template match="email">
<xsl:value-of select="."/><br/>
</xsl:template>
<xsl:template match="auteur">
<xsl:value-of select="."/><br/>
</xsl:template>
<xsl:template match="copyright">
<xsl:apply-templates select="@* | node()"/><br/>
</xsl:template>
<xsl:template match="node() | @*">
<xsl:copy><xsl:apply-templates select="@* | node()"/></xsl:copy>
</xsl:template>
</xsl:stylesheet> |
Partager