如何在 DNN9.x 中实施免费的 html5 响应模板?

how can I implement free html5 responsive template in DNN9.x?

我尝试在 DNN9.x 中实现任何 HTML 5 响应模板,它在 asp.net MVC5 中工作。 我的问题是在 dnn9 中看不到 jquery、bootsrtapor 图像源?他采用 dnn 风格的风格? 如果有任何主题、注释、链接对我有帮助?

您可能需要调整添加资源的方式。这是我在我的一个开源皮肤中导入的资源示例。

<dnn:META ID="mobileScale" runat="server" Name="viewport" Content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<dnn:JQUERY ID="dnnjQuery" runat="server" jQueryHoverIntent="true" />
<dnn:DnnJsInclude ID="bootstrapJS" runat="server" FilePath="js/bootstrap.min.js" PathNameAlias="SkinPath" Priority="10" />
<dnn:DnnCssInclude ID="bootStrapCSS" runat="server" FilePath="css/bootstrap.min.css" PathNameAlias="SkinPath" Priority="14" />
<dnn:DnnCssInclude ID="DnnCssInclude1" runat="server" FilePath="css/hhfonts.css" PathNameAlias="SkinPath" Priority="14" />

有关更详细的示例,请查看 https://github.com/ChrisHammond/HammerHead/blob/master/Home.ascx