Ignore:
Timestamp:
2008-08-27T16:28:23+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/default/transform/applet.xsl

    r13267 r17017  
    77  exclude-result-prefixes="java util">
    88 
     9  <!-- style includes global params interface_name, library_name -->
    910  <xsl:include href="style.xsl"/>
    1011 
    1112  <xsl:output method="html"/> 
     13 
     14    <!-- the main page layout template is here -->
     15  <xsl:template match="page">
     16        <html>
     17    <head>
     18      <title>
     19    <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
     20    <xsl:call-template name="pageTitle"/><xsl:text> </xsl:text>
     21      </title>
     22      <xsl:call-template name="globalStyle"/>
     23      <xsl:call-template name="pageStyle"/>
     24    </head>
     25          <body>
     26           <div id="globalwrapper">
     27          <xsl:call-template name="response" />
     28          <xsl:call-template name="greenstoneFooter"/>
     29       </div>
     30          </body>
     31        </html>
     32  </xsl:template>
    1233
    1334  <xsl:template name="pageTitle">
Note: See TracChangeset for help on using the changeset viewer.