056a06449515e38810dbbf0b34ba2a37615dccd5
[pompage.git] / xsl / yopyop.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">    
3     <xsl:template match="/">
4         <html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
5             <head>
6                 <title>
7                     yopYop
8                 </title>
9             </head>
10             @import url(../ccs/yopyop.css);
11             <body>
12                 <h1>yopYop</h1>
13                 <table>
14                     <tr>
15                         <th>Titre</th>
16                         <th>AnnĂ©e</th>
17                     </tr>
18                     <xsl:for-each select="filmographie/film">
19                         <xsl:sort select="titre"/>
20                         <tr>
21                             <td><xsl:value-of select="titre"/></td>
22                             <td><xsl:value-of select="annee"/></td>
23                         </tr>
24                     </xsl:for-each>
25                 </table>
26             </body>
27         </html>
28     </xsl:template>
29 </xsl:stylesheet>