我正在使用Orchard CMS 1.8并创建了一些聚合物组件。如果我在Themes文件夹中添加聚合物组件并使用语法
访问它RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Themes/TheThemeMachine/components/font-roboto/roboto.html") });
在布局页面中,一切正常。
现在我正在尝试将这些html组件移动到另一个项目中。我为此创建了一个模块,并在那里添加了这些聚合物html组件,我正在尝试参考。它不起作用。
RegisterLink(new LinkEntry { Rel = "import", Href = Url.Content("~/Modules/Polymer/components/font-roboto/roboto.html") });
我尝试在我的ResourceManifest中添加脚本和样式引用(在我的新模块中),我能够使用Script.Require
和Style.Require
注入脚本和样式。
我不知道如何导入htmls。任何人都可以帮助我。
答案 0 :(得分:1)
Script and Style文件夹有一个web.config文件,其中包含允许静态文件的部分。
可以将此文件复制到components文件夹中以允许显示.html文件。