15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
@using Oqtane.Themes
|
|
@using Oqtane.Client.Shared
|
|
@inherits ThemeBase
|
|
|
|
<div class="row px-4">
|
|
<Pane Name="Top" />
|
|
</div>
|
|
<div class="row px-4">
|
|
<Pane Name="Bottom" />
|
|
</div>
|
|
|
|
@code {
|
|
public override string Name { get { return "Vertical Layout"; } }
|
|
public override string Panes { get { return "Top;Bottom"; } }
|
|
} |