btcpayserver/BTCPayServer/Views/AppsPublic/ViewCrowdfund.cshtml

67 lines
2.3 KiB
Text
Raw Normal View History

@addTagHelper *, BundlerMinifier.TagHelpers
2018-12-11 16:36:25 +01:00
@inject BTCPayServer.HostedServices.CssThemeManager themeManager
@model BTCPayServer.Models.AppViewModels.ViewCrowdfundViewModel
@{
ViewData["Title"] = Model.Title;
Layout = null;
}
<!DOCTYPE html>
<html class="h-100">
<head>
<title>@Model.Title</title>
<meta charset="utf-8" />
2018-12-11 16:36:25 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="@Context.Request.GetRelativePathOrAbsolute(themeManager.BootstrapUri)" rel="stylesheet" />
<link href="@Context.Request.GetRelativePathOrAbsolute(themeManager.ThemeUri)" rel="stylesheet" />
2018-12-11 16:36:25 +01:00
@if (Model.CustomCSSLink != null)
{
<link href="@Model.CustomCSSLink" rel="stylesheet" />
2018-12-11 16:36:25 +01:00
}
2018-12-27 20:19:21 +01:00
@if (!Context.Request.Query.ContainsKey("simple"))
{
<script type="text/javascript">
var srvModel = @Safe.Json(Model);
2018-12-27 20:19:21 +01:00
</script>
<bundle name="wwwroot/bundles/crowdfund-bundle-1.min.js" asp-append-version="true"></bundle>
<bundle name="wwwroot/bundles/crowdfund-bundle-2.min.js" asp-append-version="true"></bundle>
@*We need to make sure btcpay.js is not bundled, else it will not work if there is a RootPath*@
<script src="~/modal/btcpay.js" asp-append-version="true"></script>
2018-12-27 20:19:21 +01:00
}
<bundle name="wwwroot/bundles/crowdfund-bundle.min.css" asp-append-version="true"></bundle>
2018-12-27 20:19:21 +01:00
@if (!string.IsNullOrEmpty(Model.EmbeddedCSS))
{
2020-01-23 20:19:24 -06:00
@Safe.Raw($"<style>{Model.EmbeddedCSS}</style>");
2018-12-27 20:19:21 +01:00
}
2018-12-11 16:36:25 +01:00
</head>
2018-12-27 20:19:21 +01:00
<body>
2020-01-23 20:19:24 -06:00
@if (Context.Request.Query.ContainsKey("simple"))
{
<partial name="/Views/AppsPublic/Crowdfund/MinimalCrowdfund.cshtml" model="Model" />
2020-01-23 20:19:24 -06:00
}
else
2018-12-31 13:20:00 +01:00
{
2020-01-23 20:19:24 -06:00
<noscript>
<partial name="/Views/AppsPublic/Crowdfund/MinimalCrowdfund.cshtml" model="Model" />
<style>
/* Hide the below canvas or else user will be staring "Loading..." text when JS is disabled */
#fireworks,
#app {
display:none;
}
</style>
2020-01-23 20:19:24 -06:00
</noscript>
if (Model.AnimationsEnabled)
{
<canvas id="fireworks"></canvas>
}
<partial name="/Views/AppsPublic/Crowdfund/VueCrowdfund.cshtml" model="Model" />
2018-12-31 13:20:00 +01:00
}
2018-12-11 16:36:25 +01:00
</body>
</html>