39 lines
1.7 KiB
PHP
39 lines
1.7 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="{{ $seo?->description }}">
|
|
<meta name="keywords" content="{{ $seo?->keywords }}">
|
|
|
|
<link rel="shortcut icon"
|
|
href="{{ $general->site_icon ? Storage::url($general->site_icon) : asset('assets/img/logo/favicon.png') }}">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<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/vendors.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') }}" />
|
|
</head>
|
|
|
|
<body data-mobile-nav-style="full-screen-menu" data-mobile-nav-bg-color="#252840">
|
|
<x-partials.header />
|
|
|
|
{{ $slot }}
|
|
|
|
<x-partials.footer />
|
|
|
|
<script type="text/javascript" src="{{ asset('js/home/jquery.js') }}" data-navigate-once></script>
|
|
<script type="text/javascript" src="{{ asset('js/home/vendors.js') }}" data-navigate-once></script>
|
|
<script type="text/javascript" src="{{ asset('js/home/main.js') }}"></script>
|
|
</body>
|
|
|
|
</html>
|