mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
c970481f19
* remove all absolute forward slashes to make relative urls * set global baseUrl in common blade template use this variable in all api calls * fix absolute url paths in scss set a base href in app index files for all relative resource paths * rename baseUrl to BASE_URL
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Koel - Remote Controller</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, user-scalable=no">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
<meta name="theme-color" content="#282828">
|
|
<meta name="msapplication-navbutton-color" content="#282828">
|
|
|
|
<base href="{{ asset('') }}">
|
|
<link rel="manifest" href="{{ App::staticUrl('public/manifest.json') }}" />
|
|
<meta name="msapplication-config" content="{{ App::staticUrl('public/browserconfig.xml') }}" />
|
|
<link rel="icon" type="image/x-icon" href="{{ App::staticUrl('public/img/favicon.ico') }}" />
|
|
<link rel="icon" href="{{ App::staticUrl('public/img/icon.png') }}">
|
|
<link rel="apple-touch-icon" href="{{ App::staticUrl('public/img/icon.png') }}">
|
|
|
|
<link rel="stylesheet" href="{{ App::rev('/css/remote.css') }}">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<noscript>It may sound funny, but Koel requires JavaScript to sing. Please enable it.</noscript>
|
|
@include('client-js-vars')
|
|
<script src="{{ App::rev('/js/remote/app.js') }}"></script>
|
|
</body>
|
|
</html>
|