- Added standard Laravel directory structure and configuration. - Included Svelte and Tailwind configuration for the admin interface. - Added core PHPUnit and testing scripts.
30 lines
695 B
PHP
30 lines
695 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-icehouse">
|
|
@include('themes::navigation')
|
|
|
|
<div class="container">
|
|
<header>
|
|
<h1>@yield('header')</h1>
|
|
</header>
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© {{ date('Y') }} SiteWeaver CMS. Powered by Icehouse.</p>
|
|
</footer>
|
|
</div>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|