mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
The Big Switch
Archived previous version to switch codebase to Laravel framework for the sake of reducing complexity to lower the barrier for entry for potential contributers. Because easier is always better.
This commit is contained in:
41
resources/views/frame.blade.php
Normal file
41
resources/views/frame.blade.php
Normal file
@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>
|
||||
<title>App Name - @yield('title')</title>
|
||||
</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div role="nav-left">
|
||||
<a href="/" title="home" role="nav-links">
|
||||
<i class="ti ti-biohazard-off"></i>
|
||||
</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>
|
||||
</header>
|
||||
<div role="system-notice">
|
||||
<i class="ti ti-alert-circle"></i>
|
||||
</div>
|
||||
<main>
|
||||
@section('main-content')
|
||||
@show
|
||||
</main>
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user