fedi-feed-router/resources/views/layouts/app.blade.php

31 lines
1 KiB
PHP
Raw Normal View History

2025-07-05 01:17:24 +02:00
<!DOCTYPE html>
<html lang="en">
2025-06-29 18:33:18 +02:00
<head>
2025-07-05 01:17:24 +02:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title', 'Lemmy Poster Admin')</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
2025-06-29 18:33:18 +02:00
</head>
2025-07-05 01:17:24 +02:00
<body class="bg-gray-100">
<div class="flex h-screen">
@include('partials.sidebar')
2025-06-29 18:33:18 +02:00
2025-07-05 01:17:24 +02:00
<!-- Main Content -->
<div class="flex-1 flex flex-col overflow-hidden">
<!-- Header -->
<header class="bg-white shadow-sm border-b border-gray-200">
<div class="px-6 py-4">
<h1 class="text-2xl font-semibold text-gray-800">@yield('page-title', 'Dashboard')</h1>
</div>
</header>
<!-- Content -->
<main class="flex-1 overflow-y-auto p-6">
@yield('content')
</main>
</div>
</div>
2025-06-29 18:33:18 +02:00
</body>
</html>