2024-02-29 13:00:59 -06:00
|
|
|
<!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">
|
2024-03-07 12:04:52 -06:00
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
|
2024-02-29 13:00:59 -06:00
|
|
|
|
|
|
|
</head>
|
2024-03-06 11:53:40 -06:00
|
|
|
<body>
|
2024-04-25 15:03:06 -06:00
|
|
|
<script>0</script>
|
2024-03-06 11:53:40 -06:00
|
|
|
<header>
|
|
|
|
@if($status)
|
|
|
|
<nav class="top-nav">
|
2024-05-09 13:28:15 -06:00
|
|
|
<a href="/dashboard"><img alt="fipamo logo" id="the-logo" src="/assets/images/global/fipamo-logo-primary.svg"/></a>
|
2024-03-06 11:53:40 -06:00
|
|
|
<h1>{{ $title }}</h1>
|
|
|
|
<div class="nav-right">
|
|
|
|
@if($status)
|
|
|
|
@include('includes.nav')
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<div class="notify" role="note">
|
|
|
|
@include('includes.notifications')
|
2024-03-01 18:16:24 -06:00
|
|
|
</div>
|
2024-03-06 11:53:40 -06:00
|
|
|
@endif
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
@section('main-content')
|
|
|
|
@show
|
|
|
|
</main>
|
|
|
|
<footer>
|
2024-03-01 18:16:24 -06:00
|
|
|
|
2024-03-06 11:53:40 -06:00
|
|
|
</footer>
|
|
|
|
@section('scripting')
|
|
|
|
@show
|
|
|
|
</body>
|
2024-02-29 13:00:59 -06:00
|
|
|
|
|
|
|
</html>
|