cms/themes/bloody/layout.blade.php
Funky Waddle 37ed997989 feat(cms): initialize Laravel project structure and core CMS files
- Added standard Laravel directory structure and configuration.

- Included Svelte and Tailwind configuration for the admin interface.

- Added core PHPUnit and testing scripts.
2026-04-13 12:48:06 -05:00

30 lines
631 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title', 'SiteWeaver CMS')</title>
{{ css('assets/css/style.css') }}
@stack('styles')
</head>
<body>
@include('themes::navigation')
<div class="container">
<header>
<h1>@yield('header')</h1>
</header>
<main>
@yield('content')
</main>
<footer>
<p>&copy; {{ date('Y') }} SiteWeaver CMS. Powered by Bloody.</p>
</footer>
</div>
@stack('scripts')
</body>
</html>