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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| <?xml version="1.0" encoding="utf-8"?><!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY reg "®">
<!ENTITY trade "™">
<!ENTITY mdash "—">
<!ENTITY ldquo "“">
<!ENTITY rdquo "”">
<!ENTITY pound "£">
<!ENTITY yen "¥">
<!ENTITY euro "€">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:template match="projets">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" media="screen" href="2.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Liste des projets</title>
</head>
<body>
<div id="en_tete">
</div>
<div id="menu">
<div class="element_menu">
<ul>
<li><a href="aj-pers.php">Ajouter une personne</a></li>
<li><a href="personnes.php">Gérer la liste du personnel du laboratoire</a></li>
<li><a href="formproj.html">Ajouter un projet</a></li>
<li><a href="projets.php">La liste des projets</a></li>
<li><a href="impr.php" target="new">Version imprimable</a></li>
</ul>
</div>
</div>
<div id="corps">
<xsl:apply-templates />
</div>
<div id="pied_de_page">
</div>
</body>
</html>
</xsl:template>
<xsl:template match="struct">
<h3>
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="pageWeb" />
</xsl:attribute>
<xsl:value-of select="nom" />
</xsl:element>
</h3>
<p> <xsl:value-of select="description"/> </p>
<p> État du projet <xsl:value-of select="etat"/> </p>
</xsl:template>
</xsl:stylesheet> |
Partager