Update StandaloneApp
This commit is contained in:
parent
601e7914f7
commit
85c515861c
|
|
@ -2,6 +2,6 @@
|
|||
Configuring this stuff here is temporary. Later we'll move the app config
|
||||
into Program.cs, and it won't be necessary to specify AppAssembly.
|
||||
-->
|
||||
<c:Router
|
||||
AppAssembly=@(typeof(StandaloneApp.Program).Assembly)
|
||||
PagesNamespace=@("StandaloneApp.Pages") />
|
||||
<Router
|
||||
AppAssembly=typeof(StandaloneApp.Program).Assembly
|
||||
PagesNamespace="StandaloneApp.Pages" />
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
@functions {
|
||||
@functions
|
||||
{
|
||||
public RenderFragment Body { get; set; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<div class='navbar-collapse collapse'>
|
||||
<ul class='nav navbar-nav'>
|
||||
<li>
|
||||
<!-- The 'c:' prefix and parens are workarounds for a Razor compilation issue and will be removed soon. -->
|
||||
<c:NavLink href=@("/")>
|
||||
<span class='glyphicon glyphicon-home'></span> Home
|
||||
</c:NavLink>
|
||||
|
|
|
|||
Loading…
Reference in New Issue