fipamo/resources/views/frame.blade.php
ro 84c6fa7a1a
theme color correction, editor responsive tweaks
the theme color for the dashboard was incorrect, so that has been
updated and the responsive sticky for the text formatter in the page
editor went funky with posts that had a lot of text so that's been
adjusted so it behaves as it should when it has to resize and stick
2024-11-02 14:07:53 -06:00

46 lines
1.2 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#cf436b" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<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>