blob: d0a1f4a10c7186efb3e7479ae54e5343cb85fe06 [file] [log] [blame]
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version="1.0">
<xsl:template match="rss">
<xsl:apply-templates select="channel"/>
</xsl:template>
<xsl:template match="channel">
<ul>
<xsl:apply-templates select="item[1]|item[2]|item[3]|item[4]"/>
</ul>
</xsl:template>
<xsl:template match="item">
<li>
<a href="{link}" class="media media-link">
<p class="media-date"><xsl:copy-of select="pubDate"/></p>
<h4 class="media-heading"><xsl:value-of select="title"/></h4>
<p class="media-text"><xsl:copy-of select="description/*"/></p>
</a>
</li>
</xsl:template>
</xsl:stylesheet>