38 lines
1.9 KiB
PHP
38 lines
1.9 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<title>{{ $title }} | Simedkom</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="author" content="Diskominfo Purwakarta">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<meta name="description" content="Sistem Media Komunikasi">
|
|
<!-- favicon icon -->
|
|
<link rel="shortcut icon" href="images/favicon.png">
|
|
<link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
|
|
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
|
|
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
|
|
<!-- google fonts preconnect -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<!-- style sheets and font icons -->
|
|
<link rel="stylesheet" href="{{ asset('css/home/vendors.css') }}" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
|
<link rel="stylesheet" href="{{ asset('css/home/style.css') }}" />
|
|
<link rel="stylesheet" href="{{ asset('css/home/responsive.css') }}" />
|
|
<link rel="stylesheet" href="{{ asset('css/home/it-business.css') }}" />
|
|
|
|
@vite(['resources/js/app.js'])
|
|
</head>
|
|
|
|
<body data-mobile-nav-style="full-screen-menu" data-mobile-nav-bg-color="#252840">
|
|
{{ $slot }}
|
|
|
|
<script type="text/javascript" src="{{ asset('js/home/jquery.js') }}"></script>
|
|
<script type="text/javascript" src="{{ asset('js/home/vendors.js') }}"></script>
|
|
<script type="text/javascript" src="{{ asset('js/home/main.js') }}"></script>
|
|
</body>
|
|
|
|
</html>
|