58 lines
2.0 KiB
PHP
58 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Sistem Pakar</title>
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{asset('css/bootstrap.min.css')}}">
|
|
<link rel="stylesheet" href="{{asset('css/style.css')}}">
|
|
<link rel="stylesheet" href="{{asset('css/animation.css')}}">
|
|
|
|
<!-- Font Awesome CSS -->
|
|
|
|
<!-- DataTables CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.7/css/dataTables.bootstrap5.css">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<link href="{{ asset('css/sb-admin-2.min.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('css/style.css') }}" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
@yield('content')
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#example').DataTable();
|
|
});
|
|
</script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://cdn.datatables.net/2.0.7/js/dataTables.js"></script>
|
|
<script src="https://cdn.datatables.net/2.0.7/js/dataTables.bootstrap5.js"></script>
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Core plugin JavaScript -->
|
|
|
|
|
|
<!-- Custom scripts for all pages -->
|
|
<script src="js/sb-admin-2.min.js"></script>
|
|
|
|
|
|
<!-- Page level custom scripts -->
|
|
<script src="js/demo/datatables-demo.js"></script>
|
|
</body>
|
|
|
|
</html>
|