<?xml version='1.0'?>

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

<xsl:template match="msg">

<div>
<p>
<span class="nick">
<xsl:value-of select="@nick"/></span>:<xsl:value-of select="."/>
</p>
</div>

</xsl:template>

<xsl:template match="kopete-history">
<html>
<head>
<title>Kopete history</title>
</head>
<body>
<xsl:apply-templates />
</body>
</html>
</xsl:template>


</xsl:stylesheet>