]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/xhtml-content.xsl
- added publication index
[helm.git] / helm / mowgli / home / xsl / xhtml-content.xsl
1 <?xml version="1.0"?>
2
3 <xsl:stylesheet version="1.0"
4                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5
6 <xsl:import href="common.xsl"/>
7
8 <xsl:output method="html"/>
9
10 <xsl:param name="path_to_top" select="'.'"/>
11
12 <xsl:template match="content">
13  <html>
14   <head>
15    <title><xsl:value-of select="@title"/></title>
16    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
17    <link rel="stylesheet" href="{$path_to_top}/../style/mowgli.css" type="text/css"/>
18   </head>
19   <body>
20     <xsl:call-template name="head">
21      <xsl:with-param name="path_to_top" select="$path_to_top"/>
22     </xsl:call-template>
23     <xsl:copy-of select="node()"/>
24     <xsl:call-template name="foot">
25      <xsl:with-param name="path_to_top" select="$path_to_top"/>
26     </xsl:call-template>
27   </body>
28  </html>
29 </xsl:template>
30
31 </xsl:stylesheet>
32