Skip to content

Commit

Permalink
refactor: 使用原生标签
Browse files Browse the repository at this point in the history
  • Loading branch information
ArgoZhang committed Apr 13, 2024
1 parent 08a0479 commit 00da935
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/BootstrapBlazor.Server/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="favicon.png">
<base href="/" />
<Link Href="_content/BootstrapBlazor.FontAwesome/css/font-awesome.min.css" />
<Link Href="_content/BootstrapBlazor.MaterialDesign/css/md.min.css" />
<Link Href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css" />
<Link Href="_content/BootstrapBlazor/css/motronic.min.css" />
<Link Href="BootstrapBlazor.Server.styles.css" />
<Link Href="css/site.css" />
<link href="_content/BootstrapBlazor.FontAwesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="_content/BootstrapBlazor.MaterialDesign/css/md.min.css" rel="stylesheet" />
<link href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css" rel="stylesheet" />
<link href="_content/BootstrapBlazor/css/motronic.min.css" rel="stylesheet" />
<link href="BootstrapBlazor.Server.styles.css" rel="stylesheet" />
<link href="css/site.css" rel="stylesheet" />
<title>@Localizer["Title"]</title>
<HeadOutlet @rendermode="new InteractiveServerRenderMode(false)" />
<Script Src="lib/theme.js" type="module"></Script>
<script src="lib/theme.js" type="module"></script>
</head>

<body>
Expand All @@ -36,14 +36,14 @@

<BlazorReconnector @rendermode="new InteractiveServerRenderMode(false)" />

<Script Src="_content/BootstrapBlazor.SummerNote/js/jquery-3.5.1.min.js"></Script>
<script Src="_content/BootstrapBlazor.SummerNote/js/jquery-3.5.1.min.js"></script>
@if (Env.IsDevelopment())
{
<Script Src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.js"></Script>
<script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.js"></script>
}
@if (Env.IsProduction())
{
<Script Src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js"></Script>
<script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js"></script>
}
<script src="_framework/blazor.web.js"></script>
@if (Env.IsProduction())
Expand Down

0 comments on commit 00da935

Please sign in to comment.