@page "/"
@namespace Oqtane.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@model Oqtane.Pages.HostModel
@if (!string.IsNullOrEmpty(Model.PWAScript))
{
}
@Html.Raw(Model.StyleSheets)
@Html.Raw(Model.HeadResources)
@if (string.IsNullOrEmpty(Model.Message))
{
@(Html.AntiForgeryToken())
An error has occurred. This application may no longer respond until reloaded.
An unhandled exception has occurred. See browser dev tools for details.
Reload
🗙
@if (Model.Runtime == "WebAssembly")
{
}
@if (Model.Runtime == "Server")
{
}
@if (!string.IsNullOrEmpty(Model.ReconnectScript))
{
@Html.Raw(Model.ReconnectScript)
}
@if (!string.IsNullOrEmpty(Model.PWAScript))
{
@Html.Raw(Model.PWAScript)
}
@Html.Raw(Model.BodyResources)
}
else
{
@Model.Message
}