@addTagHelper *, BundlerMinifier.TagHelpers @inject ISettingsRepository _settingsRepository @using BTCPayServer.Services.Apps @using BTCPayServer.Abstractions.Contracts @model BTCPayServer.Models.AppViewModels.ViewPointOfSaleViewModel @{ ViewData["Title"] = Model.Title; Layout = null; var theme = await _settingsRepository.GetTheme(); } @Model.Title @if (Model.CustomCSSLink != null) { } @if (Model.ViewType == PosViewType.Cart) { } @if (Model.ViewType == PosViewType.Light) { } @if (!string.IsNullOrEmpty(Model.EmbeddedCSS)) { @Safe.Raw($""); } @RenderBody()