<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 string">

<xsl:param name="CurrentUrl" />

<xsl:output omit-xml-declaration="yes" />

<xsl:template match="/">
	<xsl:apply-templates select="rows/row"/>
</xsl:template>

<xsl:template match="row">
	<div class="content">
		<h2>
      <xsl:value-of select="ebe:res('TrackbackHowToTitle')" />
    </h2>

		

		<div class="trackback-description">
      <p><xsl:value-of select="ebe:res('TrackbackHowToTitleDescription')" /></p>
			<p>&#160;</p>
			<p><xsl:value-of select="ebe:res('TrackbackWebAddress')" /></p>
			<p><strong><xsl:value-of select="$CurrentUrl"/></strong></p>
			<p>&#160;</p>
			<p><a href="{ebe:createPostUrl(PublishedDate, BlogTitleForUrl)}"><xsl:value-of select="ebe:res('BackToPost')" /></a></p>
		</div>
	</div><!-- close div content -->
	<div class="clear">&#160;</div>
</xsl:template>

</xsl:stylesheet>
