mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
272 B
Plaintext
13 lines
272 B
Plaintext
|
@using Components
|
||
|
@inherits LayoutComponentBase
|
||
|
|
||
|
@* This is required because layout components can't access scoped CSS. *@
|
||
|
<link rel="stylesheet" href="MainLayout.Razor.css" >
|
||
|
|
||
|
<div class="main">
|
||
|
<Sidebar/>
|
||
|
<div class="content">
|
||
|
@Body
|
||
|
</div>
|
||
|
|
||
|
</div>
|