Core Folder Structure
- Skote
-
Views
-
Shared
//
includes all Comoponenets
Pages
- blankLayout.cshtml // Auth pages layout.
- Footer.cshtml // footer related code. you can modify as per your requirements.
- HeadCSS.cshtml // All css link here.
- Horizontal.cshtml // Horizontal layout related code.
- Layout.cshtml // layout master
- LayoutIcoLoading.cshtml // customizer master
- PageTitle.cshtml // pageTitle related code.
- RightSidebar.cshtml // Right Sidebar related code
- Sidebar.cshtml // Sidebar related code
- TitleMeta.cshtml // meta title code
- Topbar.cshtml // Topbar menus related code, you can easily customize topbar from here.
- VendorScripts.cshtml // Common javascript files includes here.
-
Shared
//
includes all Comoponenets
Pages
Core file structure
@{
ViewBag.Title = "Starter";
ViewBag.pTitle = "Dashboard";
Layout = "~/Views/Shared/Layout.cshtml";
}
//Your Body Section
@section scripts{
<!-- App js -->
<script src="assets/js/app.js"></script>
}
Layout setup
You can set the default layout in the Views/Shared/Layout.cshtml
file in the
html
tag.
<Body>
data-topbar="light" | To set Light Sidebar & Topbar Light. |
---|---|
data-sidebar-size="small" | To set Compact Sidebar. |
class="vertical-collpsed" | To set Icon Sidebar. |
class="vertical-collpsed" data-layout-size="boxed" data-keep-enlarged="true" | To set Boxed Layout. |
data-topbar="colored" | To set Colored Sidebar. |
data-layout-scrollable="true" | To set Scrollable Width. |