35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="{{ asset('img/icon_pkb.png') }}">
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>SISTEM AR-RAHN</title>
|
|
|
|
<!-- Scripts -->
|
|
<script src="{{ asset('js/app.js') }}" defer></script>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="dns-prefetch" href="//fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
|
|
|
|
|
|
<script src="{{ asset('js/jquery.min.js') }}"></script>
|
|
<script src="{{ asset('vendor/bootstrap/js/bootstrap.min.js') }}"></script>
|
|
|
|
<!-- Styles -->
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('css/main.css') }}" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<main class="py-4">
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|