﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <xsl:template match="/">
      <xsl:apply-templates select="//Section" />
    </xsl:template>

  
  <xsl:template match="//Section">
    <h2>
      <xsl:value-of select="@title"/> 
    </h2>
    <p> <xsl:value-of select="@description"/></p>
    <ol>
    <xsl:apply-templates select="Link" /></ol>
  </xsl:template>
  
  <xsl:template match="Link">
    <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>
