55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><?php echo ucfirst(getClassName()) ?></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
|
|
<meta content="Coderthemes" name="author" />
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
|
|
|
<!-- App css -->
|
|
<link href="/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="/assets/css/template.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="/assets/css/app.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
|
|
<!-- ========== Left Sidebar Start ========== -->
|
|
<?php echo $side_menu; ?>
|
|
<!-- Left Sidebar End -->
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Start Page Content here -->
|
|
<!-- ============================================================== -->
|
|
|
|
<div class="content-page">
|
|
<div class="content">
|
|
|
|
<?php echo $header; ?>
|
|
|
|
<!-- bundle -->
|
|
<script src="/assets/js/template.min.js"></script>
|
|
<script src="/assets/js/app.js"></script>
|
|
|
|
<!-- Start Content-->
|
|
<?php echo $contents; ?>
|
|
<!-- container -->
|
|
|
|
</div>
|
|
<!-- content -->
|
|
|
|
</div>
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- End Page content -->
|
|
<!-- ============================================================== -->
|
|
<?php echo $footer; ?>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|