如何在ASP.NET MVC 5项目中用多个HTML页面和多个js / css文件实现主题?

时间:2019-02-03 12:16:45

标签: asp.net-mvc templates

我想使用包含多个html页面和多个css / js文件的主题,但是找不到有关如何执行此操作的指令集。

1 个答案:

答案 0 :(得分:0)

使用Bootswatch https://bootswatch.com/,其中包含Bootstrap的主题。下载您要应用的主题的CSS。例如,将flatly.bootstrap.css和flatly.bootstrap.min.css文件放入Content文件夹中(请确保也包括在Project中)。

这是假设您使用的是默认的_Layout.cshtml。

BundleConfig.cs:

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/flatly.bootstrap.css",
"~/Content/site.css"));