blob: f59d9f25a8dceb41d13caa613dd894cfa72c957b [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:collection="http://apache.org/cocoon/collection/1.0">
<xsl:template match="/collection:collection">
<html>
<body>
Files:
<ul>
<xsl:apply-templates select="collection:resource"/>
</ul>
<br />
Folders:
<ul>
<xsl:apply-templates select="collection:collection"/>
</ul>
</body>
</html>
</xsl:template>
<xsl:template match="collection:resource">
<li><a href="{@name}"><xsl:value-of select="@name"/></a></li>
</xsl:template>
<xsl:template match="collection:collection">
<li><a href="{@name}/"><xsl:value-of select="@name"/></a></li>
</xsl:template>
</xsl:stylesheet>