<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="html"/>

<!-- stylesheet driven displaying -->
<xsl:template match="/"> 
<HTML>
<HEAD>
 <TITLE><xsl:value-of select="/clanek/stranka/nadpis"/></TITLE>
</HEAD>
<BODY BGCOLOR="white">
  <xsl:apply-templates />
</BODY>
</HTML>
</xsl:template>

<xsl:template match="nadpis">
 <h2> <xsl:apply-templates /> </h2>
</xsl:template>

<xsl:template match="odstavec">
 <p align="justify"> <xsl:apply-templates /> </p>
</xsl:template>

</xsl:stylesheet>

