-<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">
-<!--
 
    ************************************************************
    ** Title Page (fo/start-pages.xsl)
    ************************************************************
   
-->
-<xsl:template name="createStartPage">
-<fo:block text-align="center">
<xsl:call-template name="createBookTitle"/>
<xsl:call-template name="createSubtitle"/>
<xsl:call-template name="createVersion"/>
</fo:block>
-<!--
  Titlepage Image
      <xsl:element name="img">
        <xsl:attribute name="src">image/logos.gif</xsl:attribute>
        <xsl:attribute name="width">80%</xsl:attribute>
      </xsl:element>
    </xsl:element>
     
-->
</xsl:template>
-<!--
 
    ************************************************************
    ** set title
    ************************************************************
   
-->
-<xsl:template name="createBookTitle">
-<fo:block xsl:use-attribute-sets="booktitle.style">
<xsl:value-of select="/descendant::siha:meta/siha:booktitle"/>
</fo:block>
</xsl:template>
-<xsl:template name="createSubtitle">
-<fo:block xsl:use-attribute-sets="subtitle.style">
-<xsl:if test="boolean(/descendant::siha:meta/siha:booksubtitle)">
<xsl:value-of select="/descendant::siha:meta/siha:booksubtitle"/>
</xsl:if>
</fo:block>
</xsl:template>
-<xsl:template name="createVersion">
-<fo:block xsl:use-attribute-sets="version.style">
<xsl:text>Version </xsl:text>
<xsl:value-of select="/descendant::siha:meta/siha:bookversion"/>
</fo:block>
-<fo:block xsl:use-attribute-sets="version.style">
<xsl:value-of select="/descendant::siha:meta/siha:bookdate"/>
</fo:block>
</xsl:template>
</xsl:stylesheet>