76 lines
3.8 KiB
PHP
76 lines
3.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
|
|
<title>SIGD | <?php echo $__env->yieldContent('title', 'Sistem Inventarisasi Gas Rumah Kaca Daerah'); ?></title>
|
|
<link rel="icon" href="<?php echo e(asset('assets/img/favicon.jpg')); ?>" type="image/png">
|
|
|
|
<!-- GOOGLE FONTS -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- THEMIFY ICONS -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lykmapipo/themify-icons@0.1.2/css/themify-icons.css">
|
|
|
|
<!-- BOOTSTRAP & APP CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/css/site.css')); ?>">
|
|
|
|
<!-- JQUERY & BOOTSTRAP JS -->
|
|
<script src="<?php echo e(asset('assets/js/jquery-3.4.1.min.js')); ?>"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
|
|
|
|
<!-- DATATABLES -->
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/plugins/DataTables/datatables.min.css')); ?>">
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/plugins/DataTables/datatables.custom.css')); ?>">
|
|
<script src="<?php echo e(asset('assets/plugins/DataTables/datatables.min.js')); ?>"></script>
|
|
|
|
<!-- JQUERY NUMBER -->
|
|
<script src="<?php echo e(asset('assets/plugins/jquery.number.min.js')); ?>"></script>
|
|
|
|
<!-- ZEBRA DATEPICKER -->
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/plugins/zebra_datepicker/css/bootstrap/zebra_datepicker.min.css')); ?>">
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/plugins/zebra_datepicker/css/zebra_datepicker.custom.css')); ?>">
|
|
<script src="<?php echo e(asset('assets/plugins/zebra_datepicker/zebra_datepicker.min.js')); ?>"></script>
|
|
|
|
<!-- SELECT2 -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css">
|
|
<link rel="stylesheet" href="<?php echo e(asset('assets/css/select2.custom.css')); ?>">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js"></script>
|
|
|
|
<!-- APP.JS -->
|
|
<script src="<?php echo e(asset('assets/js/app.js')); ?>"></script>
|
|
<script src="<?php echo e(asset('assets/js/custom.js')); ?>"></script>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
|
|
|
<!-- Custom CSS -->
|
|
<style>
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
</style>
|
|
<?php echo $__env->yieldPushContent('styles'); ?>
|
|
</head>
|
|
<body>
|
|
<div id="main-wrapper">
|
|
<header class="topbar-nav">
|
|
<?php echo $__env->make('layouts.navbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
</header>
|
|
<div class="page-wrapper">
|
|
<main class="container-fluid mb-5">
|
|
<?php echo $__env->yieldContent('content'); ?>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<?php echo $__env->yieldPushContent('scripts'); ?>
|
|
<?php echo $__env->make('sweetalert::alert', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/sigd/resources/views/layouts/app.blade.php ENDPATH**/ ?>
|