<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
        <xsl:template match="/">
                <xsl:variable name="chrset" select="bib/chrset"/>
                <html>
                        <head>
                                <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset={$chrset}"/>
                                <meta http-equiv="REFRESH" content="5"/>
                                <title>
                                        <xsl:value-of select="bib/title"/>
                                </title>
                                <LINK href="http://splet02.izum.si/cobiss/images/cobiss-si.css" type="text/css" rel="stylesheet"/>
                        </head>
                        <body bgcolor="#fffaf0">
                                <p>
                                  <xsl:value-of select="bib/error"/>
                                </p>
                                <table width="100%" height="100%">
                                        <tr>
                                                <td valign="middle" align="center">
                                                        <h1>
                                                                <xsl:value-of select="bib/info"/>
                                                        </h1>
                                                </td>
                                        </tr>
                                </table>
                        </body>
                </html>
        </xsl:template>
</xsl:stylesheet>

