-<!--
 edited with oXyGen XML-Editor by Edgar Neuherz (Graz University of Technology) 
-->
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:siha="http://www.a-sit.at/siha">
-<!--
 
  ************************************************************
  ** html/prolog.xsl
  ************************************************************
  
-->
-<xsl:template name="createProlog">
<xsl:apply-templates select="//siha:chapter[1]" mode="prolog"/>
</xsl:template>
-<xsl:template match="siha:chapter" mode="prolog">
-<xsl:element name="div">
<xsl:attribute name="id">prolog</xsl:attribute>
-<xsl:element name="h1">
<xsl:call-template name="setAnchorProlog"/>
<xsl:value-of select="siha:title/siha:ordinal"/>
<xsl:text> </xsl:text>
<xsl:value-of select="siha:title/siha:name"/>
</xsl:element>
<xsl:apply-templates select="node()" mode="content"/>
</xsl:element>
</xsl:template>
-<!--
 set anchor chapter 
-->
-<xsl:template name="setAnchorProlog">
-<xsl:element name="a">
-<xsl:attribute name="name">
<xsl:text>PROLOG</xsl:text>
<xsl:value-of select="siha:title/siha:ordinal"/>
</xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:stylesheet>