| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>@yield('title', 'Web-Приложение')</title>
- <style>
- body { font-family: sans-serif; margin: 0; padding: 0; background-color: #f4f7f6; }
- .container { max-width: 1200px; margin: 20px auto; padding: 20px; background-color: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
- h1 { color: #333; border-bottom: 2px solid #eee; padding-bottom: 10px; }
- .alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; padding: 10px; margin-bottom: 15px; border-radius: 4px; }
- .error-list { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px; margin-bottom: 15px; border-radius: 4px; }
- table { width: 100%; border-collapse: collapse; margin-top: 20px; }
- th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
- th { background-color: #f2f2f2; }
- </style>
- </head>
- <body>
-
- @include('partials.header')
- <div class="container">
- @yield('content')
- </div>
- @include('partials.footer')
- </body>
- </html>
|