| 17 | | <!-- the main page layout template is here --> |
|---|
| 18 | | <xsl:template match="page"> |
|---|
| 19 | | <xsl:variable name="bookswitch"><xsl:value-of select="/page/pageRequest/paramList/param[@name='book']/@value"/></xsl:variable> |
|---|
| 20 | | <xsl:variable name="a"><xsl:value-of select="/page/pageRequest/paramList/param[@name='a']/@value"/></xsl:variable> |
|---|
| 21 | | |
|---|
| 22 | | <xsl:choose> |
|---|
| 23 | | <xsl:when test="$bookswitch = 'flashxml' and $a = 'd'"> |
|---|
| 24 | | <html> |
|---|
| 25 | | <xsl:call-template name="response" /> |
|---|
| 26 | | </html> |
|---|
| 27 | | </xsl:when> |
|---|
| 28 | | |
|---|
| 29 | | <xsl:otherwise> |
|---|
| 30 | | <html> |
|---|
| 31 | | <xsl:call-template name="pageHead"/> |
|---|
| 32 | | <body> |
|---|
| 33 | | <div id="globalwrapper"> |
|---|
| 34 | | <xsl:call-template name="response" /> |
|---|
| 35 | | <xsl:call-template name="greenstoneFooter"/> |
|---|
| 36 | | </div> |
|---|
| 37 | | </body> |
|---|
| 38 | | </html> |
|---|
| 39 | | </xsl:otherwise> |
|---|
| 40 | | </xsl:choose> |
|---|
| 41 | | </xsl:template> |
|---|
| | 17 | |
|---|