ro
d1c3b4a8f6
There are some spacing issues that need to be addressed but the page editor template has been added and the CSS all lines up scripting is still an issue as the backend that handles content still isn't in place, but the front facing piece is in place so now those components can be built scripting is going to get an overhaul anyway, so this is a good place to start that process
52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="theme-color" content="#d66365" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>
|
|
@yield('title')
|
|
</title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash/start.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
@if($status)
|
|
<nav class="top-nav">
|
|
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/></a>
|
|
<h1>{{ $title }}</h1>
|
|
<div class="nav-right">
|
|
@if($status)
|
|
@include('includes.nav')
|
|
@endif
|
|
</div>
|
|
</nav>
|
|
<div class="notify" role="note">
|
|
@include('includes.notifications')
|
|
</div>
|
|
@endif
|
|
</header>
|
|
@if(session('message'))
|
|
<div class="system-notice-message" role="status">
|
|
{!! session('message') !!}
|
|
</div>
|
|
@endif
|
|
|
|
<main>
|
|
@spaceless
|
|
@section('main-content')
|
|
@show
|
|
@endspaceless
|
|
</main>
|
|
<footer>
|
|
|
|
</footer>
|
|
<script type="module" src="/assets/scripts/dash.js"></script>
|
|
</body>
|
|
|
|
</html>
|