forked from projects/thebadspace
e35dff591f
Functionality is coming along at a good pace, so it was time to start adjusting the templates and styles to the new layout. Responsive will come after all of the pages have been updated.
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
@yield('title')
|
|
</title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div>
|
|
<div class="nav-left">
|
|
<a href="/">
|
|
<img src="assets/images/global/logo-dark.svg" title="bad-space-logo" />
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<span title="page-title">{{$title}}</span>
|
|
</div>
|
|
<div>
|
|
<nav>
|
|
<a href="/about" title="about" class="nav-links">
|
|
About
|
|
</a><br />
|
|
<a href="/listings/page/1" title="instance listing" class="nav-links">
|
|
Listing
|
|
</a><br />
|
|
<a href="/den" title="login" class="nav-links">
|
|
The Den
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
@if($errors->any())
|
|
<div class="system-notice">
|
|
<i class="ti ti-alert-circle"></i> {{$errors->first()}}
|
|
</div>
|
|
@endif
|
|
@if(session('message'))
|
|
<div class="system-notice">
|
|
<i class="ti ti-alert-circle"></i> {!! session('message') !!}
|
|
</div>
|
|
@endif
|
|
|
|
<main>
|
|
@section('main-content')
|
|
@show
|
|
</main>
|
|
</body>
|
|
</body>
|
|
|
|
</html> |