blob: d83434256b9bd68ca37a25cb0c67f3f757ebaf68 [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>
<a href="../">Up</a>
<br/><br/>
Files:
<ul>
<xsl:apply-templates select="collection:resource"/>
</ul>
<a href="new">new file</a>
<br /><br /><br /><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>