bulletboards/ImageBoardServerApp/App.razor

16 lines
666 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>
2023-01-19 12:00:30 +00:00
<div class="Error404">
<img src="static/1.jpeg" alt="noimageFound"/>
<p role="alert">Sorry, nothing found. Please go back to the main page. Or watch the tree and find the hidden Cat..</p>
</div>
2023-01-18 12:56:24 +00:00
</LayoutView>
</NotFound>
</Router>