i have the xml output
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?xml-stylesheet type="text/xsl" href="/topic/get-all.xslt"?>
<List>
<item>
<id>8541915a-9098-4d10-bf80-5fbc9a5800af</id>
<name>TestTopfdic4</name>
<modifiedDate>2019-12-18T12:37:42.718</modifiedDate>
</item>
<item>
<id>55bc34e6-5cd2-436a-9d37-ceb1052187b0</id>
<name>TestTopfdic4</name>
<modifiedDate>2019-12-18T12:40:12.948</modifiedDate>
</item>
<item>
<id>2fee9ce3-1595-4c56-9833-cda03642ad05</id>
<name>TestTopfdic4</name>
<modifiedDate>2019-12-18T12:42:15.385</modifiedDate>
</item>
</List>
And try to tarnsform to html via xslt, I try to select each item and handle it separatly
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:template match="/*">
<html>
<body>
<table align="center">
<thead>
<th>Id</th>
<th>Name</th>
<th>modified date</th>
</thead>
<tbody>
<xsl:for-each select="List">
<tr>
<td><xsl:value-of select="item.id"/></td>
<td><xsl:value-of select="item.name"/></td>
<td><xsl:value-of select="item.modifiedDate"/></td>
</tr>
</xsl:for-each>
</tbody>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
But get empty output, what am I doing wrong? Coult you help me please to solve this problem ?