mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-15 01:54:20 +01:00
13 lines
477 B
Plaintext
13 lines
477 B
Plaintext
<Router AppAssembly="typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)"/>
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(EmptyLayout)">
|
|
@*TODO: Manage not found*@
|
|
<PageTitle>Not found!</PageTitle>
|
|
<p>Page not found!</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router> |