<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version = "1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
      <gpx xmlns="http://www.topografix.com/GPX/1/1" creator="kajakroning.dk" version="1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">
			  <metadata>
			    <link href="http://www.kajakroning.dk">
			      <text>Kajakroning.dk</text>
			    </link>
			    <time>2007-03-17T14:44:25Z</time>
			    <bounds maxlat="56.1502890" maxlon="10.1085380" minlat="56.1502890" minlon="10.1085380"/>
			  </metadata>
			
			  <xsl:apply-templates />
			
			</gpx>
  </xsl:template>

  <xsl:template match="marker">
    <xsl:element name="wpt">
       <xsl:attribute name="lat">
         <xsl:value-of select="@lat" />
       </xsl:attribute>         
       <xsl:attribute name="lon">
         <xsl:value-of select="@lng" />
       </xsl:attribute>         
      <name><xsl:value-of select="@name" /></name>
      <desc><xsl:value-of select="@address" /></desc>
      <link>
       <xsl:attribute name="href">
         <xsl:value-of select="@web" />
       </xsl:attribute>         
      </link>
      <sym>Boat Ramp</sym>
    </xsl:element>

  </xsl:template>

</xsl:stylesheet>