2024-02-29 20:00:59 +01: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 19:04:52 +01:00
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
|
2024-02-29 20:00:59 +01:00
|
|
|
|
|
|
|
</head>
|
2024-03-06 18:53:40 +01:00
|
|
|
<body>
|
2024-02-29 20:00:59 +01:00
|
|
|
|
2024-03-06 18:53:40 +01:00
|
|
|
<header>
|
|
|
|
@if($status)
|
|
|
|
<nav class="top-nav">
|
2024-03-23 03:15:18 +01:00
|
|
|
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/fipamo-logo-primary.svg"/></a>
|
2024-03-06 18:53:40 +01: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-02 01:16:24 +01:00
|
|
|
</div>
|
2024-03-06 18:53:40 +01:00
|
|
|
@endif
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
@section('main-content')
|
|
|
|
@show
|
|
|
|
</main>
|
|
|
|
<footer>
|
2024-03-02 01:16:24 +01:00
|
|
|
|
2024-03-06 18:53:40 +01:00
|
|
|
</footer>
|
|
|
|
@section('scripting')
|
|
|
|
@show
|
|
|
|
</body>
|
2024-02-29 20:00:59 +01:00
|
|
|
|
|
|
|
</html>
|