mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 23:24:46 +02:00

* remove AccountTransformer and update UserTransformer (client api) to match UserTransformer (application api) * rename "toVueObject" * fix tests * forgot to rename this * backwards compat * fix tests
49 lines
1.7 KiB
PHP
49 lines
1.7 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
|
|
@if(!empty($siteConfiguration))
|
|
<script>
|
|
window.SiteConfiguration = {!! json_encode($siteConfiguration) !!};
|
|
</script>
|
|
@endif
|
|
@show
|
|
<style>
|
|
@import url('//fonts.googleapis.com/css?family=Rubik:300,400,500&display=swap');
|
|
@import url('//fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans:500&display=swap');
|
|
</style>
|
|
|
|
@yield('assets')
|
|
|
|
@include('layouts.scripts')
|
|
</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>
|