我正在尝试在我的首页(主页)umbraco网站上创建新闻栏目。 我的想法是将新闻内容与网站内容区分开来,如下所示:
主页
新闻
但是,如果新闻内容不在同一文件夹中,我如何将新闻内容放入我的(主页)页面?
请帮忙。
答案 0 :(得分:2)
如果您正在使用XSLT,那么您可以这样做:
<xsl:for-each select="$currentPage/ancestor-or-self::root/News/NewsItem">
<!-- do whatever here -->
</xsl:for-each>
如果您正在使用Razor语法,请使用:
@foreach (var newsitem in Library.NodeById(-1).Descendants("News").ChildrenAsList) {
// Your processing/rendering code in here
}