[0924b6c] | 1 | <meta charset="UTF-8">
|
---|
| 2 | <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
---|
| 3 | <meta http-equiv="X-UA-Compatible" content="ie=edge">
|
---|
| 4 | <meta http-equiv="Content-Language" content="en" />
|
---|
| 5 | <meta name="msapplication-TileColor" content="#2d89ef">
|
---|
| 6 | <meta name="theme-color" content="#4188c9">
|
---|
| 7 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
---|
| 8 | <meta name="apple-mobile-web-app-capable" content="yes">
|
---|
| 9 | <meta name="mobile-web-app-capable" content="yes">
|
---|
| 10 | <meta name="HandheldFriendly" content="True">
|
---|
| 11 | <meta name="MobileOptimized" content="320">
|
---|
[c433da6] | 12 | <link rel="icon" href="{{ asset("assets/images/logo.png") }}" type="image/x-icon" />
|
---|
| 13 | <link rel="shortcut icon" type="image/x-icon" href="{{ asset("assets/images/logo.png") }}" />
|
---|
[0924b6c] | 14 |
|
---|
| 15 | <title>@yield("title")</title>
|
---|
| 16 |
|
---|
| 17 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
---|
| 18 | <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,500,500i,600,600i,700,700i&subset=latin-ext">
|
---|
| 19 |
|
---|
| 20 | <script src="{{ asset("assets/js/require.min.js") }}"></script>
|
---|
| 21 | <script>
|
---|
| 22 | requirejs.config({
|
---|
| 23 | baseUrl: '{{ config("app.url") }}'
|
---|
| 24 | });
|
---|
| 25 | </script>
|
---|
| 26 | <!-- Dashboard Core -->
|
---|
| 27 | <link href="{{ asset("assets/css/dashboard.css") }}" rel="stylesheet" />
|
---|
| 28 | <script src="{{ asset("assets/js/dashboard.js") }}"></script>
|
---|