mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 10:24:45 +02:00

* Remove old admin * Remove controller test * Remove unused exceptions * Remove unused files * More small tweaks * Fix doc block * Remove unused service * Restore these * Add back autoDeploy * Revert "Add back autoDeploy" This reverts commit 630c1e08acf8056ce8e612f376fcd00c23d90aea. * Add these back * Add back exception * Remove ApiController again --------- Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: notCharles <charles@pelican.dev>
45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ config('app.name') }}</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() }}">
|
|
<meta name="robots" content="noindex">
|
|
<link rel="shortcut icon" href="/pelican.ico">
|
|
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
|
|
<meta name="theme-color" content="#0e4688">
|
|
@show
|
|
|
|
@section('user-data')
|
|
@if(!is_null(Auth::user()))
|
|
<script>
|
|
window.PanelUser = {!! json_encode(Auth::user()->toReactObject()) !!};
|
|
</script>
|
|
@endif
|
|
@show
|
|
|
|
<script>window.SiteConfiguration = {!! json_encode($siteConfiguration) !!};</script>
|
|
|
|
<style>
|
|
@import url('//fonts.bunny.net/css?family=Rubik:300,400,500&display=swap');
|
|
@import url('//fonts.bunny.net/css?family=IBM+Plex+Mono|IBM+Plex+Sans:500&display=swap');
|
|
</style>
|
|
|
|
@yield('assets')
|
|
</head>
|
|
<body class="{{ $css['body'] ?? 'bg-neutral-50' }}">
|
|
@section('content')
|
|
@yield('above-container')
|
|
@yield('container')
|
|
@yield('below-container')
|
|
@show
|
|
@section('scripts')
|
|
{!! $asset->js('main.js') !!}
|
|
@show
|
|
</body>
|
|
</html>
|