mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
ALPHA 3.0.1a
This commit is contained in:
48
resources/views/layouts/admin/main.blade.php
Normal file
48
resources/views/layouts/admin/main.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
use App\Notifications\Alert;
|
||||
|
||||
?>
|
||||
<!doctype html>
|
||||
<head>
|
||||
|
||||
<!-- Including Head -->
|
||||
|
||||
@include('layouts.admin.head')
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Including Left Panel -->
|
||||
|
||||
@include('layouts.admin.sidebar')
|
||||
|
||||
<div id="right-panel" class="right-panel">
|
||||
|
||||
<!-- Including Header-->
|
||||
|
||||
@include('layouts.admin.header')
|
||||
|
||||
<!-- Yield Breadcrumb -->
|
||||
|
||||
@yield('breadcrumb')
|
||||
|
||||
<div class="content mt-3">
|
||||
|
||||
<!-- Yield Content -->
|
||||
|
||||
@yield('content')
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Including Javascripts -->
|
||||
|
||||
@include('layouts.admin.scripts')
|
||||
|
||||
<!-- Yield Custom Javascipts -->
|
||||
|
||||
@yield('custom_scripts')
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user