2019-11-06 12:19:06 +09:00
|
|
|
@inject BTCPayServer.HostedServices.CssThemeManager themeManager
|
|
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|
|
|
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="author" content="">
|
|
|
|
@if (themeManager.DiscourageSearchEngines)
|
|
|
|
{
|
2019-11-22 21:09:18 +01:00
|
|
|
<meta name="robots" content="noindex">
|
2019-11-06 12:19:06 +09:00
|
|
|
}
|
|
|
|
<title>@ViewData["Title"]</title>
|
|
|
|
@* CSS *@
|
2020-04-18 17:56:05 +02:00
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.BootstrapUri)" rel="stylesheet" asp-append-version="true" />
|
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.CreativeStartUri)" rel="stylesheet" asp-append-version="true" />
|
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.ThemeUri)" rel="stylesheet" asp-append-version="true" />
|
2019-11-22 21:09:18 +01:00
|
|
|
@if (!String.IsNullOrWhiteSpace(themeManager.CustomThemeUri))
|
|
|
|
{
|
2020-04-18 17:56:05 +02:00
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.CustomThemeUri)" rel="stylesheet" asp-append-version="true" />
|
2019-11-22 21:09:18 +01:00
|
|
|
}
|
2020-04-18 17:56:05 +02:00
|
|
|
<bundle name="wwwroot/bundles/main-bundle.min.css" asp-append-version="true" />
|
2019-11-06 12:19:06 +09:00
|
|
|
@* JS *@
|
2020-04-18 17:56:05 +02:00
|
|
|
<bundle name="wwwroot/bundles/main-bundle.min.js" asp-append-version="true" />
|