2024-02-05 00:52:19 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
2024-08-04 04:50:42 +00:00
|
|
|
<link href="/word-salad.css" rel="stylesheet" />
|
|
|
|
|
|
2024-08-04 19:07:03 +00:00
|
|
|
<title>{{ config('blog.publishing_name') }} | @yield('title')</title>
|
2024-02-05 00:52:19 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-10-07 03:10:25 +00:00
|
|
|
<header>
|
|
|
|
|
@include('guest.top-bar')
|
|
|
|
|
|
|
|
|
|
@include('guest.main-nav')
|
|
|
|
|
</header>
|
2024-08-04 19:07:03 +00:00
|
|
|
|
2025-03-23 19:34:28 +00:00
|
|
|
<section id="error-bag">
|
|
|
|
|
@foreach($errors->all() as $error)
|
|
|
|
|
{{ $error }}
|
|
|
|
|
@endforeach
|
|
|
|
|
</section>
|
|
|
|
|
|
2024-08-04 04:50:42 +00:00
|
|
|
<main>
|
2024-08-04 19:07:03 +00:00
|
|
|
@yield('content', 'Nothing to see here.')
|
2024-08-04 04:50:42 +00:00
|
|
|
</main>
|
2024-02-05 00:52:19 +00:00
|
|
|
</body>
|
2025-10-07 03:10:25 +00:00
|
|
|
<footer>
|
2025-10-11 20:29:03 +00:00
|
|
|
@if(! in_array(Route::currentRouteName(), ['subscribe-success', 'subscribe-fail']))
|
|
|
|
|
@include('shared.subscribe-form')
|
|
|
|
|
@endif
|
|
|
|
|
<div id="footer-copyright">
|
|
|
|
|
© {{ (new DateTime())->format('Y') }}
|
|
|
|
|
</div>
|
2025-10-07 03:10:25 +00:00
|
|
|
</footer>
|
2024-02-05 00:52:19 +00:00
|
|
|
</html>
|