layout.blade.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="Пример на bootstrap 4: Карусель, навигационная панель и новые компоненты.">
  7. <title>CasInO</title>
  8. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  9. <style>
  10. .bd-placeholder-img {
  11. font-size: 1.125rem;
  12. text-anchor: middle;
  13. }
  14. @media (min-width: 768px) {
  15. .bd-placeholder-img-lg {
  16. font-size: 3.5rem;
  17. }
  18. }
  19. </style>
  20. <link href="css/carousel.css" rel="stylesheet">
  21. </head>
  22. <body style="display: flex; flex-direction: column; height: 100%; height: -webkit-fill-available;">
  23. @include('layouts.app')
  24. <div>
  25. @yield('content')
  26. </div>
  27. @include('layouts.footer')
  28. </main>
  29. </body>
  30. </html>