<xsl:stylesheet version="1.0"
  xmlns:date="http://exslt.org/dates-and-times"
  xmlns:ebe="http://cks/ebemethods"
  xmlns:string="http://exslt.org/strings"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  exclude-result-prefixes="date ebe">

  <xsl:param name="IsBlogOwner" />
  <xsl:param name="RelativeUrl" />

  <xsl:output omit-xml-declaration="yes" />

  <xsl:template match="/">
    <xsl:apply-templates select="rows/row"/>
  </xsl:template>

  <xsl:template match="row">
    <xsl:value-of select="Title"/>
  </xsl:template>

</xsl:stylesheet>