mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
04c3191795
Just some minor cleanups
21 lines
690 B
Plaintext
21 lines
690 B
Plaintext
@inject BTCPayServer.Services.PoliciesSettings PoliciesSettings
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="~/favicon.ico" type="image/x-icon">
|
|
@if (PoliciesSettings.DiscourageSearchEngines)
|
|
{
|
|
<meta name="robots" content="noindex">
|
|
}
|
|
<title>@ViewData["Title"]</title>
|
|
@* CSS *@
|
|
<bundle name="wwwroot/bundles/main-bundle.min.css" asp-append-version="true" />
|
|
<partial name="LayoutHeadTheme" />
|
|
@* Non-JS *@
|
|
<noscript>
|
|
<style>
|
|
.hide-when-js, [v-cloak] { display: block !important; }
|
|
.only-for-js { display: none !important; }
|
|
</style>
|
|
</noscript>
|