equal
deleted
inserted
replaced
2 <html lang="en"> |
2 <html lang="en"> |
3 <head> |
3 <head> |
4 <meta charset="utf-8"> |
4 <meta charset="utf-8"> |
5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 <meta name="viewport" content="width=device-width, initial-scale=1"> |
6 <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 <title>Laravel</title> |
7 <title>@yield('title','Laravel')</title> |
8 |
8 |
|
9 @section('css-assets') |
9 <link href="{{ asset('/css/app.css') }}" rel="stylesheet"> |
10 <link href="{{ asset('/css/app.css') }}" rel="stylesheet"> |
10 |
11 |
11 <!-- Fonts --> |
12 <!-- Fonts --> |
12 <link href='//fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'> |
13 <link href='//fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'> |
|
14 @show |
13 |
15 |
14 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
16 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
15 <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
17 <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
16 <!--[if lt IE 9]> |
18 <!--[if lt IE 9]> |
17 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
19 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
53 </div> |
55 </div> |
54 </nav> |
56 </nav> |
55 |
57 |
56 @yield('content') |
58 @yield('content') |
57 |
59 |
|
60 @section('js-assets') |
58 <!-- Scripts --> |
61 <!-- Scripts --> |
59 <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
62 <script src="{{ asset('/js/vendor/jquery.js') }}"></script> |
60 <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script> |
63 <script src="{{ asset('/js/vendor/bootstrap.js') }}"></script> |
|
64 @show |
61 </body> |
65 </body> |
62 </html> |
66 </html> |