2021-07-24 18:23:21 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-US">
|
2018-05-27 00:20:36 +00:00
|
|
|
<head>
|
|
|
|
<title>{{ config('app.name', 'Pterodactyl') }}</title>
|
|
|
|
|
|
|
|
@section('meta')
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2019-12-22 05:56:45 +00:00
|
|
|
<meta name="robots" content="noindex">
|
2018-05-27 22:35:54 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
|
|
|
|
<link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
|
|
|
|
<link rel="manifest" href="/favicons/manifest.json">
|
|
|
|
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#bc6e3c">
|
|
|
|
<link rel="shortcut icon" href="/favicons/favicon.ico">
|
|
|
|
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
|
|
|
|
<meta name="theme-color" content="#0e4688">
|
2018-05-27 00:20:36 +00:00
|
|
|
@show
|
|
|
|
|
2018-07-15 05:42:58 +00:00
|
|
|
@section('user-data')
|
|
|
|
@if(!is_null(Auth::user()))
|
|
|
|
<script>
|
2021-01-07 17:21:09 +00:00
|
|
|
window.PterodactylUser = {!! json_encode(Auth::user()->toReactObject()) !!};
|
2019-12-16 02:05:44 +00:00
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
@if(!empty($siteConfiguration))
|
|
|
|
<script>
|
|
|
|
window.SiteConfiguration = {!! json_encode($siteConfiguration) !!};
|
2018-07-15 05:42:58 +00:00
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
@show
|
2020-07-03 21:51:40 +00:00
|
|
|
<style>
|
|
|
|
@import url('//fonts.googleapis.com/css?family=Rubik:300,400,500&display=swap');
|
2020-08-21 00:45:24 +00:00
|
|
|
@import url('//fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;500;600&display=swap');
|
2020-07-03 21:51:40 +00:00
|
|
|
</style>
|
2018-07-15 05:42:58 +00:00
|
|
|
|
2020-08-26 04:00:43 +00:00
|
|
|
@yield('assets')
|
2018-05-27 00:20:36 +00:00
|
|
|
|
|
|
|
@include('layouts.scripts')
|
|
|
|
</head>
|
2019-02-09 22:32:18 +00:00
|
|
|
<body class="{{ $css['body'] ?? 'bg-neutral-50' }}">
|
2018-06-03 06:15:10 +00:00
|
|
|
@section('content')
|
2018-05-27 22:35:54 +00:00
|
|
|
@yield('above-container')
|
2019-06-10 02:26:20 +00:00
|
|
|
@yield('container')
|
2018-05-27 22:35:54 +00:00
|
|
|
@yield('below-container')
|
2018-06-03 06:15:10 +00:00
|
|
|
@show
|
2018-05-27 00:20:36 +00:00
|
|
|
@section('scripts')
|
2018-06-04 02:35:50 +00:00
|
|
|
{!! $asset->js('main.js') !!}
|
2018-05-27 00:20:36 +00:00
|
|
|
@show
|
|
|
|
</body>
|
|
|
|
</html>
|