60 lines
2.3 KiB
PHP
60 lines
2.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
<title>{{ $sistemData->nama }}</title>
|
|
<meta content="" name="description">
|
|
<meta content="" name="keywords">
|
|
|
|
<!-- Favicons -->
|
|
<link rel="icon" type="image/png" href="{{ asset('img/DataLogo/' . $sistemData->logo) }}">
|
|
|
|
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.gstatic.com" rel="preconnect">
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
|
|
rel="stylesheet">
|
|
|
|
<!-- Vendor CSS Files -->
|
|
<link href={{ asset('vendor/bootstrap/css/bootstrap.min.css') }} rel="stylesheet">
|
|
<link href={{ asset('vendor/bootstrap-icons/bootstrap-icons.css') }} rel="stylesheet">
|
|
<link href={{ asset('vendor/boxicons/css/boxicons.min.css') }} rel="stylesheet">
|
|
<link href={{ asset('vendor/quill/quill.snow.css') }} rel="stylesheet">
|
|
<link href={{ asset('vendor/quill/quill.bubble.css') }} rel="stylesheet">
|
|
<link href={{ asset('vendor/remixicon/remixicon.css') }} rel="stylesheet">
|
|
|
|
<!-- Template Main CSS File -->
|
|
<link href={{ asset('assets/css/style.css') }} rel="stylesheet">
|
|
|
|
{{-- Alert Sweetalert --}}
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10" async></script>
|
|
</head>
|
|
|
|
<body>
|
|
@yield('content');
|
|
<!-- End #main -->
|
|
|
|
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
|
|
class="bi bi-arrow-up-short"></i></a>
|
|
|
|
<!-- Vendor JS Files -->
|
|
<script src={{ asset('vendor/apexcharts/apexcharts.min.js') }}></script>
|
|
<script src={{ asset('vendor/bootstrap/js/bootstrap.bundle.min.js') }}></script>
|
|
<script src={{ asset('vendor/chart.js/chart.umd.js') }}></script>
|
|
<script src={{ asset('vendor/echarts/echarts.min.js') }}></script>
|
|
<script src={{ asset('vendor/quill/quill.min.js') }}></script>
|
|
<script src={{ asset('vendor/tinymce/tinymce.min.js') }}></script>
|
|
<script src={{ asset('vendor/php-email-form/validate.js') }}></script>
|
|
|
|
<!-- Template Main JS File -->
|
|
<script src={{ asset('assets/js/main.js') }}></script>
|
|
@include('sweetalert::alert')
|
|
|
|
</body>
|
|
|
|
</html>
|