15 lines
503 B
Plaintext
15 lines
503 B
Plaintext
<Router AppAssembly="typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
@if (routeData.Template is not null && routeData.Template.StartsWith("/blog"))
|
|
{
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(Layout.BlogLayout)"/>
|
|
}
|
|
else
|
|
{
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(Layout.MainLayout)"></RouteView>
|
|
}
|
|
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
|
|
</Found>
|
|
</Router>
|