We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c1724 commit a1a344bCopy full SHA for a1a344b
resources/views/templates/wrapper.blade.php
@@ -38,6 +38,14 @@
38
@include('layouts.scripts')
39
</head>
40
<body class="{{ $css['body'] ?? 'bg-neutral-50' }}">
41
+ @if(\Illuminate\Support\Str::contains(config('app.version'), ['-alpha', '-beta']))
42
+ <div class="bg-red-500">
43
+ <p class="text-center text-white text-sm p-3">
44
+ You are running a pre-release version of Pterodactyl. Please report any issues
45
+ <a href="https://github.com/pterodactyl/panel/issues" class="text-red-100">via GitHub</a>.
46
+ </p>
47
+ </div>
48
+ @endif
49
@section('content')
50
@yield('above-container')
51
@yield('container')
0 commit comments