html-din-flux.xsl 782 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
  4. <xsl:output indent="yes" method="html" />
  5. <xsl:template match="/">
  6. <table>
  7. <tbody>
  8. <xsl:for-each select="//item">
  9. <tr>
  10. <td class="data"><xsl:value-of select="pubDate" /></td>
  11. <td>
  12. <xsl:element name="a">
  13. <xsl:attribute name="href">
  14. <xsl:value-of select="link" />
  15. </xsl:attribute>
  16. <xsl:attribute name="target">_blank</xsl:attribute>
  17. <xsl:attribute name="class">extern</xsl:attribute>
  18. <xsl:attribute name="title">
  19. <xsl:value-of select="title" />
  20. </xsl:attribute>
  21. <xsl:value-of select="title" />
  22. </xsl:element>
  23. </td>
  24. </tr>
  25. </xsl:for-each>
  26. </tbody>
  27. </table>
  28. </xsl:template>
  29. </xsl:stylesheet>