simedkom/resources/views/components/layouts/app.blade.php

37 lines
1.6 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">
<link rel="shortcut icon" href="{{ asset('storage/' . $general->site_icon) }}">
<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>