39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<!doctype html>
|
|
<html lang="en" class="h-full bg-white">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>AuditionAdmin Results</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/sortablejs@1.14.0/Sortable.min.js"></script>
|
|
</head>
|
|
<body class="h-full">
|
|
|
|
|
|
|
|
<div x-data="{ open: false }" @keydown.window.escape="open = false">
|
|
@include('results.mobile-header')
|
|
<div x-show="open" class="h-full">
|
|
@include('results.sidebar')
|
|
</div>
|
|
<div class="hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-72 lg:flex-col">
|
|
<!-- Sidebar component, swap this element with another sidebar if you like -->
|
|
@include('results.sidebar')
|
|
</div>
|
|
|
|
|
|
<main class="py-10 lg:pl-72">
|
|
<div class="px-4 sm:px-6 lg:px-8">
|
|
<!-- Your content -->
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|