我想使用包含多个html页面和多个css / js文件的主题,但是找不到有关如何执行此操作的指令集。
答案 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"));