rizal245754733

template.blade.php

May 28th, 2017
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  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>Aplikasi 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 It IE 9]>-->
  11. </head>
  12. <body>
  13.     <div class="container">
  14.     {{-- include untuk memasukan doc lain ke dalam template --}}
  15.         @include('navbar')
  16.         @yield('main')
  17.     </div>
  18.     @yield('footer')
  19.     <script type="{{ asset('js/jquery_3_2_1.min.js') }}"></script>
  20.     <script type="{{ asset('bootstrap_3_3_7/js/bootstrap.min.js') }}"></script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment