| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>My Simple Blog</title>
- <script src="https://cdn.tailwindcss.com"></script>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
- <style>
- body { font-family: 'Inter', sans-serif; }
- </style>
- </head>
- <body class="bg-gray-50 text-gray-800 flex flex-col min-h-screen">
- <nav class="bg-white shadow-sm border-b border-gray-100">
- <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
- <div class="flex justify-between h-16">
- <div class="flex">
- <a href="{{ route('home') }}" class="flex-shrink-0 flex items-center font-bold text-xl text-indigo-600">
- BlogApp
- </a>
- </div>
-
- <div class="flex items-center space-x-6">
- <a href="{{ route('admin.posts.index') }}" class="text-sm text-gray-600 hover:text-indigo-600 font-medium transition">
- Управление статьями
- </a>
- <a href="{{ route('admin.comments.index') }}" class="text-sm text-gray-600 hover:text-indigo-600 font-medium transition flex items-center">
- Модерация
- @php
- $pendingCount = \App\Models\Comment::where('is_approved', false)->count();
- @endphp
- @if($pendingCount > 0)
- <span class="ml-2 bg-red-100 text-red-600 text-xs font-bold px-2 py-0.5 rounded-full border border-red-200">
- {{ $pendingCount }}
- </span>
- @endif
- </a>
- </div>
- </div>
- </div>
- </nav>
- <main class="flex-grow">
- <div class="max-w-4xl mx-auto py-10 px-4 sm:px-6 lg:px-8">
- @if(session('success'))
- <div class="mb-6 bg-green-50 border-l-4 border-green-400 p-4 rounded-md shadow-sm">
- <div class="flex">
- <div class="flex-shrink-0">
- <svg class="h-5 w-5 text-green-400" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/></svg>
- </div>
- <div class="ml-3">
- <p class="text-sm text-green-700 font-medium">{{ session('success') }}</p>
- </div>
- </div>
- </div>
- @endif
- @yield('content')
- </div>
- </main>
- <footer class="bg-white border-t border-gray-200 mt-12">
- <div class="max-w-4xl mx-auto py-6 px-4 overflow-hidden sm:px-6 lg:px-8">
- <p class="text-center text-base text-gray-400">
- © {{ date('Y') }} Simple Blog. Сделано на Laravel.
- </p>
- </div>
- </footer>
- </body>
- </html>
|