2018-05-26 17:20:36 -07:00
|
|
|
<html>
|
|
|
|
<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() }}">
|
|
|
|
@show
|
|
|
|
|
|
|
|
@section('assets')
|
2018-06-03 19:35:50 -07:00
|
|
|
{!! $asset->css('main.css') !!}
|
2018-05-26 17:20:36 -07:00
|
|
|
@show
|
|
|
|
|
|
|
|
@include('layouts.scripts')
|
|
|
|
</head>
|
|
|
|
<body class="{{ $css['body'] ?? 'bg-grey-lighter' }}">
|
2018-06-02 23:15:10 -07:00
|
|
|
@section('content')
|
|
|
|
@yield('above-container')
|
|
|
|
<div id="pterodactyl">
|
|
|
|
@yield('container')
|
|
|
|
</div>
|
|
|
|
@yield('below-container')
|
|
|
|
@show
|
2018-05-26 17:20:36 -07:00
|
|
|
@section('scripts')
|
2018-06-03 19:35:50 -07:00
|
|
|
{!! $asset->js('main.js') !!}
|
2018-05-26 17:20:36 -07:00
|
|
|
@show
|
|
|
|
</body>
|
|
|
|
</html>
|