mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Started CSS and Layout upgrades
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.
This commit is contained in:
@ -11,33 +11,37 @@
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div role="nav-left">
|
||||
<a href="/" title="home" role="nav-links">
|
||||
<i class="ti ti-biohazard-off"></i>
|
||||
<div>
|
||||
<div class="nav-left">
|
||||
<a href="/">
|
||||
<img src="assets/images/global/logo-dark.svg" title="bad-space-logo" />
|
||||
</a>
|
||||
<a href="/about" title="about" role="nav-links">
|
||||
<i class="ti ti-info-circle"></i>
|
||||
</a>
|
||||
<a href="/listings/page/1" title="instance listing" role="nav-links">
|
||||
<i class="ti ti-list"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div role="nav-right">
|
||||
<a href="/den" title="login" role="nav-links">
|
||||
<i class="ti ti-door-enter" title="login"></i>
|
||||
</a>
|
||||
|
||||
</nav>
|
||||
<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 role="system-notice">
|
||||
<div class="system-notice">
|
||||
<i class="ti ti-alert-circle"></i> {{$errors->first()}}
|
||||
</div>
|
||||
@endif
|
||||
@if(session('message'))
|
||||
<div role="system-notice">
|
||||
<div class="system-notice">
|
||||
<i class="ti ti-alert-circle"></i> {!! session('message') !!}
|
||||
</div>
|
||||
@endif
|
||||
|
Reference in New Issue
Block a user