<?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" doctype-system="about:legacy-compat" omit-xml-declaration="yes" />
  <xsl:template match="/">
    <html>
      <head>
        <title>Limulus Research Kitchens - Who knows what is to come?</title>
        <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Neucha;subset=latin" />
        <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"/>
        <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 />
      </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}"/>
  </xsl:template>
</xsl:stylesheet>

