<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
  <xsl:output method="html" encoding="UTF-8" indent="yes"/>
  <xsl:template match="/">
    <!--<xsl:text disable-output-escaping='yes'>&lt;!DOCTYPE html></xsl:text>-->
    <html>
      <head>
        <title>Limulus Research Kitchens - Who knows what is to come?</title>
        <link rel="stylesheet" type="text/css" href="/css/index.css" media="screen" />
        <link rel="stylesheet" type="text/css" href="/bandname/styles/style.css" media="screen" />
		<xsl:apply-templates select="/page/style"/>
        <script type="text/javascript" src="/js/jquery.js"></script>
		<xsl:apply-templates select="/page/script"/>
      </head>
      <body>
        <h1 class="comingsoon">Limulus Research Kitchens</h1>
        <h2>Site Design | Custom Programming | Unique Vision</h2>
		<div>
          <img src="/pix/limuli.jpg" alt="Limulus" />
          <img src="/pix/research.jpg" alt="Research" />
          <img src="/pix/kitchen.jpg" alt="Kitchens" />
        </div>
        <xsl:apply-templates select="/page/body" />
      </body>
    </html>
  </xsl:template>
  <xsl:template match="/page/style">
     <link rel="stylesheet" type="text/css" href="{./@href}" media="screen" />
  </xsl:template>
  <xsl:template match="/page/script">
     <script type="text/javascript" src="{./@src}"></script>
  </xsl:template>
</xsl:stylesheet>
