sitecore评论列表到文章

时间:2013-05-21 08:17:40

标签: .net comments sitecore

我需要在我的博客中添加评论功能 我有一篇文章。我需要在那篇文章评论部分之后。

也许我很蠢但我不知道如何解决这个......

您可以告诉我任何想法或发送一些URL的例子吗?

我使用sitecore在section和xslt中构建我的文章来构建这篇文章的视图。

示例xsl:template到我的文章:

<xsl:template match="*" mode="main">
  <xsl:variable name = "siteRoot" select="ancestor-or-self::item[sc:IsItemOfType('ArticlePage',.)]"/>
  <div>
    <h2>
      <sc:html select = "$siteRoot" field="Article_Title"/>
    </h2>
    <h6>
      <sc:html select="$siteRoot" field="Article_Date" />
    </h6>
    <sc:html select = "$siteRoot" field="Article_Content" />
    <br />
    <div class="CommentRegion">
      Comments must be here
    </div>
  </div>
</xsl:template>

0 个答案:

没有答案