@addTagHelper *, BundlerMinifier.TagHelpers @inject BTCPayServer.HostedServices.CssThemeManager themeManager @model BTCPayServer.Models.AppViewModels.ViewCrowdfundViewModel @{ ViewData["Title"] = Model.Title; Layout = null; } @Model.Title @if (Model.CustomCSSLink != null) { } @if (!Context.Request.Query.ContainsKey("simple")) { @*We need to make sure btcpay.js is not bundled, else it will not work if there is a RootPath*@ } @if (!string.IsNullOrEmpty(Model.EmbeddedCSS)) { @Safe.Raw($""); } @if (Context.Request.Query.ContainsKey("simple")) { @await Html.PartialAsync("/Views/AppsPublic/Crowdfund/MinimalCrowdfund.cshtml", Model) } else { if (Model.AnimationsEnabled) { } @await Html.PartialAsync("/Views/AppsPublic/Crowdfund/VueCrowdfund.cshtml", Model) }