1234567891011121314151617181920212223242526272829303132333435 |
- <!doctype html>
- <html lang="ru">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="Пример на bootstrap 4: Карусель, навигационная панель и новые компоненты.">
- <title>CasInO</title>
- <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">
- <style>
- .bd-placeholder-img {
- font-size: 1.125rem;
- text-anchor: middle;
- }
- @media (min-width: 768px) {
- .bd-placeholder-img-lg {
- font-size: 3.5rem;
- }
- }
- </style>
- <link href="css/carousel.css" rel="stylesheet">
- </head>
- <body style="display: flex; flex-direction: column; height: 100%; height: -webkit-fill-available;">
- @include('layouts.app')
- <div>
- @yield('content')
- </div>
- @include('layouts.footer')
- </main>
- </body>
- </html>
|