| 1 | <!DOCTYPE html> | = | 1 | <!DOCTYPE html> |
| 2 | 2 | |||
| 3 | <html lang="{{ app()->getLocale() }}" class="default-style"> | 3 | <html lang="{{ app()->getLocale() }}" class="default-style"> | |
| 4 | <head> | 4 | <head> | |
| 5 | <meta charset="utf-8"> | 5 | <meta charset="utf-8"> | |
| 6 | <meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1"> | 6 | <meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1"> | |
| 7 | <meta name="description" content=""> | 7 | <meta name="description" content=""> | |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
| 9 | <meta name="csrf-token" content="{{ csrf_token() }}"> | 9 | <meta name="csrf-token" content="{{ csrf_token() }}"> | |
| 10 | 10 | |||
| 11 | <title>Laravel + Vue.js Starter</title> | 11 | <title>Laravel + Vue.js Starter</title> | |
| 12 | 12 | |||
| 13 | <!-- Main font --> | 13 | <!-- Main font --> | |
| 14 | <link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet"> | 14 | <link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet"> | |
| 15 | 15 | |||
| 16 | <!-- Icons. Uncomment required icon fonts --> | 16 | <!-- Icons. Uncomment required icon fonts --> | |
| 17 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/fontawesome.css') }}"> --> | 17 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/fontawesome.css') }}"> --> | |
| 18 | <link rel="stylesheet" href="{{ mix('/vendor/fonts/ionicons.css') }}"> | 18 | <link rel="stylesheet" href="{{ mix('/vendor/fonts/ionicons.css') }}"> | |
| 19 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/linearicons.css') }}"> --> | 19 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/linearicons.css') }}"> --> | |
| 20 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/open-iconic.css') }}"> --> | 20 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/open-iconic.css') }}"> --> | |
| 21 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/pe-icon-7-stroke.css') }}"> --> | 21 | <!-- <link rel="stylesheet" href="{{ mix('/vendor/fonts/pe-icon-7-stroke.css') }}"> --> | |
| 22 | 22 | |||
| 23 | <!-- Promises --> | +- | ||
| 24 | <script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.4/bluebird.min.js"></script> | |||
| 25 | ||||
| 26 | <!-- Layout helpers --> | = | 23 | <!-- Layout helpers --> |
| 27 | <script src="{{ mix('/vendor/js/layout-helpers.js') }}"></script> | 24 | <script src="{{ mix('/vendor/js/layout-helpers.js') }}"></script> | |
| 28 | 25 | |||
| 29 | </head> | 26 | </head> | |
| 30 | <body> | 27 | <body> | |
| 31 | 28 | |||
| 32 | <div id="app"></div> | 29 | <div id="app"></div> | |
| 33 | 30 | |||
| 34 | <script src="{{ mix('/entry-point.js') }}"></script> | 31 | <script src="{{ mix('/entry-point.js') }}"></script> | |
| 35 | 32 | |||
| 36 | </body> | 33 | </body> | |
| 37 | </html> | 34 | </html> |