You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
PHTML
37 lines
1.3 KiB
PHTML
8 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>KaratWorld Payroll | <?= $this->renderSection('title'); ?></title>
|
||
|
|
||
|
<!-- Google Font: Source Sans Pro -->
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
||
|
<!-- Font Awesome -->
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/plugins/fontawesome-free/css/all.min.css">
|
||
|
<?= $this->renderSection('css') ?>
|
||
|
<!-- Theme style -->
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/dist/css/adminlte.min.css">
|
||
|
</head>
|
||
|
<body class="hold-transition <?= $this->renderSection('bodyclass') ?>">
|
||
|
|
||
|
<?= $this->renderSection('main') ?>
|
||
|
|
||
|
<!-- jQuery -->
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/jquery/jquery.min.js"></script>
|
||
|
<!-- jQuery UI 1.11.4 -->
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/jquery-ui/jquery-ui.min.js"></script>
|
||
|
<!-- Bootstrap 4 -->
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||
|
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
|
||
|
<script>
|
||
|
$.widget.bridge('uibutton', $.ui.button)
|
||
|
</script>
|
||
|
<!-- AdminLTE App -->
|
||
|
<script src="<?= base_url() ?>adminlte/dist/js/adminlte.min.js"></script>
|
||
|
|
||
|
<?= $this->renderSection('js') ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|