fipamo/resources/views/frame.blade.php
ro fe36bae01e
removed role from frame and settings script
there was an unused layer that had an impropper role attribute and
improper usage in the settings script, so both have been removed
2024-03-25 13:46:43 -06:00

47 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">
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
</head>
<body>
<header>
@if($status)
<nav class="top-nav">
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/fipamo-logo-primary.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>
<main>
@spaceless
@section('main-content')
@show
@endspaceless
</main>
<footer>
</footer>
@section('scripting')
@show
</body>
</html>