18 lines
284 B
Plaintext
18 lines
284 B
Plaintext
@using Oqtane.Themes
|
|
@inherits ContainerBase
|
|
|
|
@title
|
|
|
|
@functions {
|
|
string title = "";
|
|
|
|
protected override void OnInit()
|
|
{
|
|
title = ModuleState.Title;
|
|
if (PageState.Control == "Settings")
|
|
{
|
|
title = PageState.Control;
|
|
}
|
|
}
|
|
}
|