示例#1
0
        public static IHtmlContent UseAiurDashboardCss(this RazorPage page, bool includeCore = true)
        {
            var serviceLocation = page.Context.RequestServices.GetService <ServiceLocation>();
            var builder         = new HtmlContentBuilder()
                                  .AppendHtml($"<meta name=\"theme-color\" content=\"#0082c9\">");

            if (includeCore)
            {
                return(builder
                       .AppendStyleSheet($"{serviceLocation.UI}/dist/AiurCore.min.css")
                       .AppendStyleSheet($"{serviceLocation.UI}/dist/AiurDashboard.min.css"));
            }
            else
            {
                return(builder
                       .AppendStyleSheet($"{serviceLocation.UI}/dist/AiurDashboard.min.css"));
            }
        }