﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <xsl:template match="/">
    <ul>
      <xsl:apply-templates select="//Section" />
      </ul>
    </xsl:template>

  
  <xsl:template match="//Section">
    
    <li>
      <a>
        <xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
      <xsl:value-of select="@title"/></a>:
      <xsl:value-of select="@description"/>
    </li>
  </xsl:template>
  
</xsl:stylesheet>
