40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
@namespace Oqtane.Themes.OqtaneTheme
|
|
@inherits ThemeBase
|
|
@implements IThemeControl
|
|
|
|
<main role="main">
|
|
<nav class="navbar navbar-expand-md navbar-dark bg-primary fixed-top">
|
|
<Logo /><Menu Orientation="Horizontal" />
|
|
<div class="controls ml-md-auto">
|
|
<div class="controls-group"><UserProfile /> <Login /> <ControlPanel /></div>
|
|
</div>
|
|
</nav>
|
|
<div class="content container">
|
|
<PaneLayout />
|
|
<div class="row px-4">
|
|
<Pane Name="Admin" />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
@code {
|
|
public override string Name => "Default";
|
|
|
|
public override string Panes => string.Empty;
|
|
|
|
public override List<Resource> Resources => new List<Resource>()
|
|
{
|
|
new Resource { ResourceType = ResourceType.Stylesheet, Url = "https://stackpath.bootstrapcdn.com/bootswatch/4.4.1/cyborg/bootstrap.min.css", Integrity = "sha384-l7xaoY0cJM4h9xh1RfazbgJVUZvdtyLWPueWNtLAphf/UbBgOVzqbOTogxPwYLHM", CrossOrigin = "anonymous" },
|
|
new Resource { ResourceType = ResourceType.Stylesheet, Url = ThemePath() + "Theme.css" }
|
|
};
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
{
|
|
if (firstRender)
|
|
{
|
|
var interop = new Interop(JSRuntime);
|
|
await interop.LoadBootstrapJS();
|
|
}
|
|
}
|
|
}
|