master.blade.php 697 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <!-- <title>@yield('title')</title> -->
  7. <link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/album/">
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  9. <!-- <link href="/css/app.css" rel="stylesheet"> -->
  10. </head>
  11. <body>
  12. @include('header')
  13. @include('main')
  14. @yield('content')
  15. <script src="{{ asset('js/app.js') }}" type="text/js"></script>
  16. </body>
  17. </html>