我需要在我的博客中添加评论功能。
我有一篇文章。我需要在那篇文章评论部分之后。
也许我很愚蠢,但我不知道如何解决这个问题......
您能告诉我任何想法或发送有关此示例的 URL 吗?
我使用 sitecore 来构建我的文章,并使用 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>