Static website for local motocross track (circa Jun 2004)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

67 lines
3.1 KiB

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:output method="html" indent="yes"
  5. doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
  6. doctype-system="http://www.w3.org/TR/html4/loose.dtd"/>
  7. <xsl:strip-space elements="page"/>
  8. <xsl:template match="/">
  9. <html>
  10. <head>
  11. <title><xsl:value-of select="page/@title"/></title>
  12. <meta http-equiv="Content-Language" content="en-us"></meta>
  13. <meta name="keywords" content="motocross, track, Gadsden, Tennessee, Hurricane Mills, Loretta Lynns, whoops, tabletops, doubles, rhythm section"></meta>
  14. <meta name="description" content="Full featured motocross track located in Gadsden, Tn., less than 100 miles from Loretta Lynn's (Hurricane Mills)."></meta>
  15. <script language="JavaScript" src="/scripts/window.js"></script>
  16. <script language="JavaScript" src="/scripts/buttons.js"></script>
  17. <link href="/styles/core.css" rel="stylesheet" type="text/css"></link>
  18. <link href="/styles/thmx.css" rel="stylesheet" type="text/css"></link>
  19. </head>
  20. <body>
  21. <div id="layout">
  22. <div id="siteheader"><img src="/images/logo.jpg" class="logo" /></div>
  23. <div id="panel">
  24. <a href="/index.html" onMouseOver="mouseOver('Home');" onMouseOut="mouseOut('Home');"
  25. ><img name="Home" src="/images/Home.jpg" class="button" alt="navButton" /></a
  26. ><a href="/info.html" onMouseOver="mouseOver('TrackInfo');" onMouseOut="mouseOut('TrackInfo');"
  27. ><img name="TrackInfo" src="/images/TrackInfo.jpg" class="button" alt="navButton" /></a
  28. ><a href="/directions.html" onMouseOver="mouseOver('Directions');" onMouseOut="mouseOut('Directions');"
  29. ><img name="Directions" src="/images/Directions.jpg" class="button" alt="navButton" /></a
  30. ><a href="/calendar.html" onMouseOver="mouseOver('Calendar');" onMouseOut="mouseOut('Calendar');"
  31. ><img name="Calendar" src="/images/Calendar.jpg" class="button" alt="navButton" /></a
  32. ><a href="/results.html" onMouseOver="mouseOver('Results');" onMouseOut="mouseOut('Results');"
  33. ><img name="Results" src="/images/Results.jpg" class="button" alt="navButton" /></a
  34. ><a href="/king.html" onMouseOver="mouseOver('King');" onMouseOut="mouseOut('King');"
  35. ><img name="King" src="/images/King.jpg" class="button" alt="navButton" /></a
  36. ><a href="/gallery.html" onMouseOver="mouseOver('Gallery');" onMouseOut="mouseOut('Gallery');"
  37. ><img name="Gallery" src="/images/Gallery.jpg" class="button" alt="navButton" /></a
  38. ><a href="#" onMouseOver="mouseOver('Soon');" onMouseOut="mouseOut('Soon');"
  39. ><img name="Soon" src="/images/Soon.jpg" class="button" alt="navButton" /></a><br />
  40. </div> <!-- panel -->
  41. <div id="content">
  42. <xsl:apply-templates/>
  43. </div> <!-- content -->
  44. <div id="footer">
  45. <div class="centered"><img src="/images/greydot.gif" width="90%" height="1px" /></div>
  46. <p>Questions or comments? Contact the <a href="mailto:webmaster@thmx.com">webmaster</a>.<br />
  47. Website design and hosting by <a href="http://www.bullseyecomputing.com/">BCS</a>.<br />
  48. Photography by <a href="mailto:jana@tnmx.com">Jana Infield</a>.</p>
  49. </div> <!-- footer -->
  50. </div> <!-- layout -->
  51. </body>
  52. </html>
  53. </xsl:template>
  54. </xsl:stylesheet>