mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Design system updates * Icon fix * Add new icons, replace show/hide * Icon replacements * Test fix * Icon replacements in Vault * More icon replacements * Final icon replacements, remove Font Awesome
34 lines
1.3 KiB
Text
34 lines
1.3 KiB
Text
@inject BTCPayServer.Services.PoliciesSettings PoliciesSettings
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
@if (PoliciesSettings.DiscourageSearchEngines)
|
|
{
|
|
<meta name="robots" content="noindex">
|
|
}
|
|
<title>@ViewData["Title"]</title>
|
|
@* CSS *@
|
|
<link href="~/main/bootstrap/bootstrap.css" asp-append-version="true" rel="stylesheet" />
|
|
<link href="~/vendor/flatpickr/flatpickr.css" asp-append-version="true" rel="stylesheet" />
|
|
<link href="~/main/fonts/OpenSans.css" asp-append-version="true" rel="stylesheet" />
|
|
<link href="~/main/layout.css" asp-append-version="true" rel="stylesheet" />
|
|
<link href="~/main/site.css" asp-append-version="true" rel="stylesheet" />
|
|
|
|
<partial name="LayoutHeadTheme" />
|
|
@if (ViewData.TryGetValue("StoreBranding", out var storeBranding) && storeBranding != null)
|
|
{
|
|
<partial name="LayoutHeadStoreBranding" model="storeBranding" />
|
|
}
|
|
else
|
|
{
|
|
<meta name="theme-color" content="#51B13E">
|
|
<link rel="icon" href="~/favicon.ico">
|
|
<link rel="apple-touch-icon" href="~/img/icons/icon-512x512.png">
|
|
<link rel="apple-touch-startup-image" href="~/img/splash.png">
|
|
}
|
|
@* Non-JS *@
|
|
<noscript>
|
|
<style>
|
|
.hide-when-js { display: block !important; }
|
|
.only-for-js { display: none !important; }
|
|
</style>
|
|
</noscript>
|