toko/application/views/admin/sb_admin/index.php

72 lines
1.7 KiB
PHP
Raw Normal View History

2020-01-09 00:57:57 +07:00
<!DOCTYPE html>
<html lang="en">
<head>
2020-01-09 11:23:07 +07:00
<?php $this->load->view($tpl_path . "_partial/head.php") ?>
2020-01-09 00:57:57 +07:00
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
2020-01-09 11:23:07 +07:00
<?php $this->load->view($tpl_path . "_partial/sidebar.php") ?>
2020-01-09 00:57:57 +07:00
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
2020-01-09 11:23:07 +07:00
<?php $this->load->view($tpl_path . "_partial/topbar.php") ?>
2020-01-09 00:57:57 +07:00
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="container-fluid">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>
<a href="#" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i class="fas fa-download fa-sm text-white-50"></i> Generate Report</a>
</div>
<!-- Content Row -->
<div class="row">
2020-01-09 17:06:18 +07:00
2020-01-09 00:57:57 +07:00
</div>
2020-01-09 11:23:07 +07:00
2020-01-09 00:57:57 +07:00
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
2020-01-09 11:23:07 +07:00
<?php $this->load->view($tpl_path . "_partial/footer.php") ?>
2020-01-09 00:57:57 +07:00
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
2020-01-09 11:23:07 +07:00
<!-- Modal-->
<?php $this->load->view($tpl_path . "_partial/modal.php") ?>
<!-- End Modal-->
2020-01-09 00:57:57 +07:00
2020-01-09 11:23:07 +07:00
<?php $this->load->view($tpl_path . "_partial/js.php") ?>
2020-01-09 00:57:57 +07:00
</body>
</html>