44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title')</title>
|
|
|
|
<link rel="stylesheet" href="{{ asset('css/vendor.css?v='.$asset_v) }}">
|
|
|
|
<!-- app css -->
|
|
<link rel="stylesheet" href="{{ asset('css/app.css?v='.$asset_v) }}">
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
@if (session('status'))
|
|
<input type="hidden" id="status_span" data-status="{{ session('status.success') }}" data-msg="{{ session('status.msg') }}">
|
|
@endif
|
|
@yield('content')
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js?v=$asset_v"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js?v=$asset_v"></script>
|
|
<![endif]-->
|
|
|
|
<!-- jQuery 2.2.3 -->
|
|
<script src="{{ asset('js/vendor.js?v=' . $asset_v) }}"></script>
|
|
<script src="{{ asset('js/functions.js?v=' . $asset_v) }}"></script>
|
|
@yield('javascript')
|
|
</body>
|
|
|
|
</html> |