fipamo/resources/views/frame.blade.php
ro a2053df931
edits for issues #104 and #110
logo images did not have an alt tag, so they've been added

buttons on the options menu were generic, so an interactive description
was added through the use of aria labels
2024-05-09 13:28:15 -06:00

45 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>
<script>0</script>
<header>
@if($status)
<nav class="top-nav">
<a href="/dashboard"><img alt="fipamo logo" 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>
@section('main-content')
@show
</main>
<footer>
</footer>
@section('scripting')
@show
</body>
</html>