2023-08-14 21:07:53 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
2023-08-17 03:08:14 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2023-08-18 04:50:38 +02:00
|
|
|
<meta name="theme-color" content="#d66365" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2023-08-17 03:08:14 +02:00
|
|
|
<title>
|
|
|
|
@yield('title')
|
|
|
|
</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
|
|
</head>
|
2023-08-14 21:07:53 +02:00
|
|
|
|
2023-08-17 03:08:14 +02:00
|
|
|
<body>
|
|
|
|
<header>
|
2023-08-18 00:14:01 +02:00
|
|
|
<div>
|
|
|
|
<div class="nav-left">
|
|
|
|
<a href="/">
|
2023-08-18 04:50:38 +02:00
|
|
|
<img src="/assets/images/global/logo-dark.svg" title="bad-space-logo" />
|
2023-08-17 03:08:14 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-08-18 00:14:01 +02:00
|
|
|
<div>
|
|
|
|
<span title="page-title">{{$title}}</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<nav>
|
|
|
|
<a href="/about" title="about" class="nav-links">
|
|
|
|
About
|
|
|
|
</a><br />
|
2023-08-18 04:50:38 +02:00
|
|
|
<a href="/listings/1" title="instance listing" class="nav-links">
|
|
|
|
Listings
|
2023-08-18 00:14:01 +02:00
|
|
|
</a><br />
|
|
|
|
<a href="/den" title="login" class="nav-links">
|
|
|
|
The Den
|
|
|
|
</a>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-17 03:08:14 +02:00
|
|
|
</header>
|
|
|
|
@if($errors->any())
|
2023-08-18 00:14:01 +02:00
|
|
|
<div class="system-notice">
|
2023-08-17 03:08:14 +02:00
|
|
|
<i class="ti ti-alert-circle"></i> {{$errors->first()}}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if(session('message'))
|
2023-08-18 00:14:01 +02:00
|
|
|
<div class="system-notice">
|
2023-08-17 03:08:14 +02:00
|
|
|
<i class="ti ti-alert-circle"></i> {!! session('message') !!}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<main>
|
|
|
|
@section('main-content')
|
|
|
|
@show
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|