-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.blade.php
More file actions
51 lines (38 loc) · 1.62 KB
/
app.blade.php
File metadata and controls
51 lines (38 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $title }}</title>
<link rel="icon" href="{{ asset('cds/favicon.ico') }}" type="image/vnd.microsoft.icon"/>
@vite('resources/css/laravel-base.css')
<style>
@import "{{ asset('cds/css/base.css') }}" layer(base);
</style>
@vite('resources/css/app.css')
<!-- Cornell.edu Typography -->
<link rel="stylesheet" href="https://use.typekit.net/nwp2wku.css">
<!-- Icon Fonts -->
<link rel="stylesheet" href="{{ asset('cds/fonts/font-awesome.min.css') }}">
<link rel="stylesheet" href="{{ asset('cds/fonts/material-design-iconic-font.min.css') }}">
<link rel="stylesheet" href="{{ asset('cds/fonts/cornell-custom.css') }}">
@livewireStyles
<!-- @see https://fluxui.dev/docs/dark-mode#disabling-dark-mode-handling -->
@fluxAppearance
</head>
<body class="fill secondary-page cu-seal cu-seal-right search-facilities-page" x-data x-effect="document.body.classList.toggle('dark', $flux.dark)">
<x-layouts.header :title="$title ?? (config('app.name'))" :subtitle="$subtitle ?? (config('app.subtitle'))"/>
<main id="main" class="band" tabindex="-1">
{{ $slot }}
</main>
<x-layouts.footer/>
<!-- jQuery and Contributed Components -->
<script src="{{ asset('cds/js/contrib/jquery-3.7.1.min.js') }}"></script>
<!-- CWD Components -->
<script src="{{ asset('cds/js/cds.js') }}"></script>
<script src="{{ asset('cds/js/cds_menus.js') }}"></script>
@livewireScripts
@fluxScripts
</body>
</html>