mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Added About, Listings, Location pages
Added additional pages About, Listings, and Location as well as implementing the corresponding functionality for those pages to be able to pull the data they need from the DB. Also continued layout clean up and adjusted some gloabal font sizing settings
This commit is contained in:
@ -20,7 +20,7 @@
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<span title="page-title">{{$title}}</span>
|
||||
<h1>{{$title}}</h1>
|
||||
</div>
|
||||
<div>
|
||||
<nav>
|
||||
@ -37,14 +37,15 @@
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
@if($errors->any())
|
||||
<div class="system-notice">
|
||||
<i class="ti ti-alert-circle"></i> {{$errors->first()}}
|
||||
<div class="system-notice-error" role="status">
|
||||
{{$errors->first()}}
|
||||
</div>
|
||||
@endif
|
||||
@if(session('message'))
|
||||
<div class="system-notice">
|
||||
<i class="ti ti-alert-circle"></i> {!! session('message') !!}
|
||||
<div class="system-notice-message" role="status">
|
||||
{!! session('message') !!}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@ -52,6 +53,11 @@
|
||||
@section('main-content')
|
||||
@show
|
||||
</main>
|
||||
<footer>
|
||||
<div>
|
||||
<p>The Bad Space © 2023</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</body>
|
||||
|
||||
|
Reference in New Issue
Block a user