45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
@php use App\Settings; @endphp
|
|
<!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 class="flex items-center gap-x-6 bg-indigo-600 px-6 py-2.5 sm:px-3.5 sm:before:flex-1">
|
|
{{-- Desktop/Tablet Header --}}
|
|
<p class="text-sm leading-6 text-white hidden md:block">
|
|
<strong class="font-semibold">Audition Results</strong>
|
|
<svg viewBox="0 0 2 2" class="mx-2 inline h-0.5 w-0.5 fill-current" aria-hidden="true">
|
|
<circle cx="1" cy="1" r="1"/>
|
|
</svg>
|
|
{{ Settings::get('auditionName') }}
|
|
</p>
|
|
{{-- mobile header --}}
|
|
<p class="text-sm leading-6 text-white block md:hidden">
|
|
<strong class="font-semibold">{{ Settings::get('auditionAbbreviation') }}</strong>
|
|
<svg viewBox="0 0 2 2" class="mx-2 inline h-0.5 w-0.5 fill-current" aria-hidden="true">
|
|
<circle cx="1" cy="1" r="1"/>
|
|
</svg>
|
|
Audition Results
|
|
</p>
|
|
<div class="flex flex-1 justify-end">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mx-auto max-w-sm">
|
|
|
|
{{ $slot }}
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|