mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
290 B
Plaintext
13 lines
290 B
Plaintext
@inherits LayoutComponentBase
|
|
|
|
@* This is required because layout components can't access scoped CSS. *@
|
|
@* <link rel="stylesheet" href="MainLayout.Razor.css"> *@
|
|
|
|
<div id="background"></div>
|
|
<SideBar/>
|
|
<div id="wrapper">
|
|
<TopBar/>
|
|
<div id="page">
|
|
@Body
|
|
</div>
|
|
</div> |