-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathlayout.blade.php
More file actions
92 lines (87 loc) · 2.46 KB
/
layout.blade.php
File metadata and controls
92 lines (87 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html
lang="{{ str_replace('_', '-', app()->getLocale()) }}"
x-data="{
darkMode: $persist(
window.matchMedia('(prefers-color-scheme: dark)').matches,
),
}"
x-bind:class="{ 'dark': darkMode === true }"
>
<head>
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<meta charset="utf-8" />
<meta
http-equiv="X-UA-Compatible"
content="IE=edge"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="csrf-token"
content="{{ csrf_token() }}"
/>
<title>NativePHP{{ isset($title) ? ' | ' . $title : '' }}</title>
{{-- Favicon --}}
<link
rel="icon"
href="{{ asset('favicon.svg') }}"
type="image/svg+xml"
/>
{!! SEOMeta::generate() !!}
{!! OpenGraph::generate() !!}
{!! Twitter::generate() !!}
<!-- Fathom - beautiful, simple website analytics -->
<script
src="https://cdn.usefathom.com/script.js"
data-site="HALHTNZU"
defer
></script>
<!-- / Fathom -->
{{-- Styles --}}
<style>
[x-cloak] {
display: none !important;
}
</style>
@livewireStyles
@vite('resources/css/app.css')
</head>
<body
x-cloak
x-data="{
showMobileMenu: false,
showDocsMenu: false,
scrolled: window.scrollY > 50,
width: window.innerWidth,
get showPlatformSwitcherHeader() {
return ! this.scrolled && this.width >= 1024
},
}"
x-resize="
width = $width
if (width >= 1024) {
showMobileMenu = false
showDocsMenu = false
}
"
x-init="
window.addEventListener('scroll', () => {
scrolled = window.scrollY > 50
})
"
class="font-poppins min-h-screen overflow-x-clip antialiased selection:bg-black selection:text-[#b4a9ff] dark:bg-[#050714] dark:text-white"
>
<x-navigation-bar />
{{ $slot }}
<x-footer />
@livewireScriptConfig
@vite('resources/js/app.js')
@vite('resources/css/docsearch.css')
</body>
</html>