<xsl:stylesheet version=“1.0” xmlns:xsl=“www.w3.org/1999/XSL/Transform”>

<xsl:output cdata-section-elements="script"/>

<xsl:template match="/">
  <html>
    <head>
      <title>Changelog</title>
      <link REL='SHORTCUT ICON' HREF="../img/ruby-sm.png" />
      <style>
        td { font-family: sans-serif;  padding: 0px 10px; }
      </style>
    </head>
    <body>
    <div class="container">
      <h1>Changelog</h1>
      <table style="width: 100%;">
        <xsl:apply-templates />
      </table>
    </div>
    </body>
  </html>
</xsl:template>

<xsl:template match="entry">
    <tr>
      <td><b><pre><xsl:value-of select="message"/></pre></b></td>
      <td><xsl:value-of select="author"/></td>
      <td><xsl:value-of select="date"/></td>
    </tr>
</xsl:template>

</xsl:stylesheet>