Assorted enhancements
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Oqtane</title>
|
||||
<title>@Model.Title</title>
|
||||
<base href="~/" />
|
||||
<link id="app-favicon" rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
|
||||
<!-- stub the PWA manifest but defer the assignment of href -->
|
||||
|
@ -40,6 +40,7 @@ namespace Oqtane.Pages
|
||||
public RenderMode RenderMode = RenderMode.Server;
|
||||
public string HeadResources = "";
|
||||
public string BodyResources = "";
|
||||
public string Title = "";
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
@ -80,6 +81,7 @@ namespace Oqtane.Pages
|
||||
{
|
||||
RenderMode = (RenderMode)Enum.Parse(typeof(RenderMode), site.RenderMode, true);
|
||||
}
|
||||
Title = site.Name;
|
||||
}
|
||||
|
||||
// if culture not specified
|
||||
|
Reference in New Issue
Block a user