Ignore:
Timestamp:
2008-08-27T16:31:10+12:00 (16 years ago)
Author:
max
Message:

Move the HTML skeleton from style.xsl to the current XSL file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/web/interfaces/gs2/transform/about.xsl

    r13254 r17019  
    1313  <xsl:include href="service-params.xsl"/>
    1414  <xsl:output method="html"/> 
     15 
     16    <!-- the main page layout template is here -->
     17  <xsl:template match="page">
     18    <html>
     19    <head>
     20      <title>
     21    <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
     22    <xsl:call-template name="pageTitle"/><xsl:text> </xsl:text>
     23      </title>
     24      <xsl:call-template name="globalStyle"/>
     25      <xsl:call-template name="pageStyle"/>
     26    </head>
     27      <body class="bgimage">
     28    <xsl:attribute name="dir"><xsl:call-template name="direction"/></xsl:attribute>
     29    <div id="page">
     30       <xsl:apply-templates select="pageResponse"/>
     31       <xsl:call-template name="greenstoneFooter"/>                   
     32    </div>
     33      </body>
     34    </html>
     35  </xsl:template>
    1536
    1637  <xsl:template name="pageTitle">
Note: See TracChangeset for help on using the changeset viewer.