<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
  
  <xsl:template match="/newslist">
    <!--<table width="100%">-->
      <xsl:apply-templates select="news"></xsl:apply-templates>
    <!--</table>-->
  </xsl:template>

  <xsl:template match="news">   
        <div class="list-group-item">
          <a>
            <xsl:attribute name="href">
              <xsl:value-of select="link"/>
            </xsl:attribute>
            <xsl:value-of select="Headline"/>
          </a>
          (<xsl:value-of select="CreatedDate"/>)
       </div>    
  </xsl:template>
</xsl:stylesheet> 

