bulletboards/ImageBoardServerApp/App.razor

14 lines
545 B
Text
Raw Normal View History

2023-01-18 12:56:24 +00:00
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
2023-01-18 13:49:53 +00:00
<h3>404</h3>
<img src="static/1.jpeg" alt="noimageFound"/>
2023-01-18 12:56:24 +00:00
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>