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

<xsl:template match="/posts">
    <span>Posts around the web that I found interesting today:</span>
    <ul>
        <xsl:apply-templates select="post">
        </xsl:apply-templates>
    </ul>
</xsl:template>

<xsl:template match="post">
    <li>
        <a href="{@href}">
            <strong>
                <xsl:value-of select="@description"/>
            </strong>
        </a>: <xsl:value-of select="@extended"/>
    </li>
</xsl:template>
</xsl:stylesheet>

