Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=Edge">
  6.     <meta name="viewport" content="width=device-width,initial-scale=1">
  7.     <title>Contoh Laravel</title>
  8.     <link href="{{ asset('bootstrap_3_3_7/css/bootstrap.min.css') }}" rel = "stylesheet">
  9.     <link href="{{ asset('css/style.css') }}" rel="stylesheet">
  10.     <!--[if lt IE 9]>-->
  11. </head>
  12. <body>
  13.     <div class="container">
  14.         @include('navbar')
  15.         @yield('main')
  16.     </div>
  17.     @yield('footer')
  18.     <script type="{{ asset('js/jquery_3_2_1.min.js') }}"></script>
  19.     <script type="{{ asset('bootstrap_3_3_7/js/bootstrap.min.js') }}"></script>
  20. </body>
  21. </html>