2019-03-23 19:10:16 -05:00
|
|
|
@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>
|
2019-03-12 15:48:24 +09:00
|
|
|
<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">
|
2019-03-12 15:48:24 +09:00
|
|
|
<link href="@Context.Request.GetRelativePathOrAbsolute(themeManager.BootstrapUri)" rel="stylesheet" />
|
2019-10-26 21:20:39 +02:00
|
|
|
<link href="@Context.Request.GetRelativePathOrAbsolute(themeManager.ThemeUri)" rel="stylesheet" />
|
2018-12-11 16:36:25 +01:00
|
|
|
@if (Model.CustomCSSLink != null)
|
|
|
|
{
|
2019-03-12 15:48:24 +09:00
|
|
|
<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">
|
2019-08-10 14:05:11 +09:00
|
|
|
var srvModel = @Safe.Json(Model);
|
2018-12-27 20:19:21 +01:00
|
|
|
</script>
|
2020-04-18 17:56:05 +02:00
|
|
|
<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>
|
2019-03-12 15:48:24 +09:00
|
|
|
@*We need to make sure btcpay.js is not bundled, else it will not work if there is a RootPath*@
|
2020-04-22 08:24:29 +02:00
|
|
|
<script src="~/modal/btcpay.js" asp-append-version="true"></script>
|
2018-12-27 20:19:21 +01:00
|
|
|
}
|
2019-03-12 15:48:24 +09:00
|
|
|
|
2020-04-18 17:56:05 +02: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"))
|
|
|
|
{
|
2021-04-08 15:32:42 +02:00
|
|
|
<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>
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="/Views/AppsPublic/Crowdfund/MinimalCrowdfund.cshtml" model="Model" />
|
2020-12-11 22:23:59 -08:00
|
|
|
|
|
|
|
<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>
|
|
|
|
}
|
2021-04-08 15:32:42 +02:00
|
|
|
<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>
|