forked from koel/koel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.blade.php
39 lines (32 loc) · 1.36 KB
/
base.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<title>@yield('title')</title>
<meta name="description" content="{{ config('app.tagline') }}">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#282828">
<meta name="msapplication-navbutton-color" content="#282828">
<base href="{{ asset('') }}">
<link rel="manifest" href="{{ static_url('manifest.json') }}"/>
<meta name="msapplication-config" content="{{ static_url('browserconfig.xml') }}"/>
<link rel="icon" type="image/x-icon" href="{{ static_url('img/favicon.ico') }}"/>
<link rel="icon" href="{{ static_url('img/icon.png') }}">
<link rel="apple-touch-icon" href="{{ static_url('img/icon.png') }}">
<script>
// Work around for "global is not defined" error with local-storage.js
window.global = window
</script>
</head>
<body>
<div id="app"></div>
<noscript>It may sound funny, but Koel requires JavaScript to sing. Please enable it.</noscript>
<script>
window.BASE_URL = @json(asset(''));
window.PUSHER_APP_KEY = @json(config('broadcasting.connections.pusher.key'));
window.PUSHER_APP_CLUSTER = @json(config('broadcasting.connections.pusher.options.cluster'));
</script>
@stack('scripts')
</body>
</html>