]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/xsl/common.xsl
- more uniform layout
[helm.git] / helm / mowgli / home / xsl / common.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:template name="head">
7   <div class="right">
8    <div class="small">
9     <a href="home.html">MoWGLI: Mathematics on the Web: Get It by Logic and Interfaces</a>
10    </div>
11   </div>
12   <hr/>
13 </xsl:template>
14
15 <xsl:template name="foot">
16   <hr/>
17   <div class="small">
18    This page is hosted by the
19    <a href="http://www.cs.unibo.it">Department of Computer Science</a>,
20    <a href="http://www.unibo.it">University of Bologna</a>
21   </div>
22 </xsl:template>
23
24 <xsl:template name="person-name">
25   <xsl:param name="file" select="''"/>
26   <xsl:value-of select="document(concat('../xml/people/',$file,'.xml'))/person/name"/>
27   <xsl:value-of select="' '"/>
28   <xsl:value-of select="document(concat('../xml/people/',$file,'.xml'))/person/surname"/>
29 </xsl:template>
30
31 </xsl:stylesheet>
32