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/system.xsl

    r8526 r17017  
    55  extension-element-prefixes="java">
    66 
     7  <!-- style includes global params interface_name, library_name -->
    78  <xsl:include href="style.xsl"/>
     9 
     10  <!-- the main page layout template is here -->
     11  <xsl:template match="page">
     12        <html>
     13    <head>
     14      <title>
     15    <!-- put a space in the title in case the actual value is missing - mozilla will not display a page with no title-->
     16    <xsl:call-template name="pageTitle"/><xsl:text> </xsl:text>
     17      </title>
     18      <xsl:call-template name="globalStyle"/>
     19      <xsl:call-template name="pageStyle"/>
     20    </head>
     21          <body>
     22           <div id="globalwrapper">
     23          <xsl:call-template name="response" />
     24          <xsl:call-template name="greenstoneFooter"/>
     25       </div>
     26          </body>
     27        </html>
     28  </xsl:template>
    829 
    930    <xsl:template name="pageTitle">
Note: See TracChangeset for help on using the changeset viewer.