cms/themes/royal/layout.blade.php.bak
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
692 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>
<link rel="stylesheet" href="{{ theme_asset('assets/css/style.css') }}">
@stack('styles')
</head>
<body class="theme-royal">
@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 Icehouse.</p>
</footer>
</div>
@stack('scripts')
</body>
</html>