Change the psud theme.
[hacks/simpleWebSlides.git] / xpi / test.xsl
1 <xsl:stylesheet version="1.0"
2    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3    <xsl:template match="/">
4      <html>
5        <head>
6          <title>Foo</title>
7        </head>
8        <body>
9          <xsl:variable name="nombalise">
10            <xsl:choose>
11              <xsl:when test="count(descendant::ingredient) mod 2 = 0">b</xsl:when>
12              <xsl:otherwise>i</xsl:otherwise>
13            </xsl:choose>
14          </xsl:variable>
15          <xsl:element name="{$nombalise}">
16            Gras
17          </xsl:element>
18        </body>
19      </html>
20    </xsl:template>
21 </xsl:stylesheet>