Files
CKB/resources/views/layouts/frontapp.blade.php
2025-05-27 19:09:17 +07:00

136 lines
4.8 KiB
PHP

<!DOCTYPE html>
<!--
Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 4 & Angular 8
Author: KeenThemes
Website: http://www.keenthemes.com/
Contact: support@keenthemes.com
Follow: www.twitter.com/keenthemes
Dribbble: www.dribbble.com/keenthemes
Like: www.facebook.com/keenthemes
Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
Renew Support: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes
License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project.
-->
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<!-- begin::Head -->
<head>
<!--begin::Base Path (base relative path for assets of this page) -->
<base href="../">
<!--end::Base Path -->
<meta charset="utf-8" />
<title>{{ config('app.name', 'Bengkel') }} {{ isset($page_title) ? ' | ' . $page_title : '' }}</title>
<meta name="description" content="Updates and statistics">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="base-url" content="{{ url('/') }}">
<!--begin::Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Roboto:300,400,500,600,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700|Roboto:300,400,500,600,700">
<!--end::Fonts -->
<!--begin::Global Theme Styles(used by all pages) -->
<link href="{{ url('css/app.bundle.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ url('css/saxmono.ttf') }}" rel="stylesheet" type="text/css" />
<!--end::Global Theme Styles -->
<!--begin::Global Custom Styles(used by all pages) -->
<link href="{{ url('css/custom-web.css') }}" rel="stylesheet" type="text/css" />
<!--end::Global Custom Styles -->
<link rel="shortcut icon" href="{{ url('assets/media/logos/ckb.jpeg') }}" />
<link href="{{ asset('css/bootstrap-datepicker.min.css') }}" rel="stylesheet" type="text/css" />
<style>
input[type="date"]::-webkit-clear-button {
display: none;
}
.mobile-container {
background: #dfe9f9;
margin: 0 auto;
height: 100vh;
overflow: auto;
position: relative;
width: 100%;
}
/* @media(min-width: 1024px) {
.mobile-container {
max-width: 1024px;
}
} */
/* Scrollbar */
::-webkit-scrollbar {
width: .45rem;
}
::-webkit-scrollbar-thumb {
background-color: rgba(88, 103, 221, .2);
border-radius: 3px;
}
::-webkit-scrollbar-track{
background: transparent;
}
/* .mobile-container p, .mobile-container span, .mobile-container b, .mobile-container a {
font-size: 10px !important;
} */
</style>
@yield('styles')
</head>
<!-- end::Head -->
<!-- begin::Body -->
<body>
@yield('content')
<!-- begin::Global Config(global config for global JS sciprts) -->
<script>
var KTAppOptions = {
"colors": {
"state": {
"brand": "#5d78ff",
"dark": "#282a3c",
"light": "#ffffff",
"primary": "#5867dd",
"success": "#34bfa3",
"info": "#36a3f7",
"warning": "#ffb822",
"danger": "#fd3995"
},
"base": {
"label": ["#c5cbe3", "#a1a8c3", "#3d4465", "#3e4466"],
"shape": ["#f0f3ff", "#d9dffa", "#afb4d4", "#646c9a"]
}
}
};
</script>
<!-- end::Global Config -->
<!--begin::Global Theme Bundle(used by all pages) -->
<script src="{{ url('js/app.bundle.min.js') }}" type="text/javascript"></script>
<script src="//maps.google.com/maps/api/js?key=AIzaSyBTGnKT7dt597vo9QgeQ7BFhvSRP4eiMSM" type="text/javascript"></script>
<!--end::Global Theme Bundle -->
<!--begin::Common Script -->
<script src="{{ url('js/init.js') }}" type="text/javascript"></script>
<!--end::Common Scripts -->
<!--end::Common Scripts -->
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.3.0/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2"></script>
<script src="{{ asset('js/bootstrap-datepicker.min.js') }}" type="text/javascript"></script>
<script src="https://cdn.datatables.net/fixedcolumns/4.2.2/js/dataTables.fixedColumns.min.js"></script>
@yield('javascripts')
</body>
<!-- end::Body -->
</html>