2017-08-27 15:53:17 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Koel - Remote Controller</title>
|
|
|
|
|
|
|
|
<meta name="description" content="{{ config('app.tagline') }}">
|
|
|
|
<meta charset="utf-8">
|
2017-08-27 21:38:59 +00:00
|
|
|
<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">
|
2017-08-27 15:53:17 +00:00
|
|
|
|
|
|
|
<meta name="theme-color" content="#282828">
|
|
|
|
<meta name="msapplication-navbutton-color" content="#282828">
|
|
|
|
|
2017-10-26 14:59:53 +00:00
|
|
|
<base href="{{ asset('') }}">
|
2017-08-27 15:53:17 +00:00
|
|
|
<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>
|
2017-10-02 18:29:08 +00:00
|
|
|
@include('client-js-vars')
|
2017-08-27 15:53:17 +00:00
|
|
|
<script src="{{ App::rev('/js/remote/app.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|