<?xml version='1.0'?>
<xsl:stylesheet xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:srw_dc="info:srw/schema/1/dc-v1.1" xmlns:srw="http://www.loc.gov/zing/srw/" xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
    <xsl:output method='html' omit-xml-declaration='yes' />
    <!-- let's get started -->
    <xsl:template match='/'>
        <html>
            <head>
                <title>Simple SRU server implemented with WebService::Solr</title>
                <link type="text/css" rel="stylesheet" href="style.css" />
            </head>
            <body>
                <h1>Simple SRU server implemented with WebService::Solr</h1>
                
 				<!-- the search form -->
 				<xsl:copy-of select="document('form.xml')" />

                <!-- footer -->
 				<xsl:copy-of select="document('footer.xml')" />

            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>
