1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
- <xsl:output indent="yes" method="html" />
- <xsl:template match="/">
- <table>
- <tbody>
- <xsl:for-each select="//item">
- <tr>
- <td class="data"><xsl:value-of select="pubDate" /></td>
- <td>
- <xsl:element name="a">
- <xsl:attribute name="href">
- <xsl:value-of select="link" />
- </xsl:attribute>
- <xsl:attribute name="target">_blank</xsl:attribute>
- <xsl:attribute name="class">extern</xsl:attribute>
- <xsl:attribute name="title">
- <xsl:value-of select="title" />
- </xsl:attribute>
- <xsl:value-of select="title" />
- </xsl:element>
- </td>
- </tr>
- </xsl:for-each>
- </tbody>
- </table>
- </xsl:template>
- </xsl:stylesheet>
|