]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/project.xsl
Fixed broken links to IST images.
[helm.git] / helm / mowgli / home / xsl / project.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:template match="/">
11  <html>
12   <head>
13    <title>The Project</title>
14    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
15    <link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
16   </head>
17   <body>
18    <blockquote>
19     <xsl:call-template name="head">
20      <xsl:with-param name="path_to_top" select="'.'"/>
21     </xsl:call-template>
22     <xsl:apply-templates/>
23     <xsl:call-template name="foot">
24      <xsl:with-param name="path_to_top" select="'../..'"/>
25     </xsl:call-template>
26    </blockquote>
27   </body>
28  </html>
29 </xsl:template>
30
31 <xsl:template match="project">
32  <h1>
33   <xsl:value-of select="full_title"/>
34   <xsl:text> (</xsl:text>
35   <xsl:value-of select="acronym"/>
36   <xsl:text>)</xsl:text>
37  </h1>
38  <p>
39   <xsl:text>Project type: </xsl:text>
40   <xsl:value-of select="type"/>
41   <xsl:text> (</xsl:text>
42   <xsl:value-of select="type_acronym"/>
43   <xsl:text>)</xsl:text>
44  </p>
45  <p>
46   <xsl:text>Proposal Contract Number: </xsl:text>
47   <xsl:value-of select="proposal_contract_no"/>
48  </p>
49  <p>
50   <xsl:text>Operative Commencement Date: </xsl:text>
51   <xsl:value-of select="operative_commencement_of_contract"/>
52  </p>
53 </xsl:template>
54
55 </xsl:stylesheet>