mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Koel</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">
|
|
|
|
<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/vendors.css') }}">
|
|
<link rel="stylesheet" href="{{ App::rev('css/app.css') }}">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<script src="{{ App::rev('js/vendors.js') }}"></script>
|
|
<script src="{{ App::rev('js/main.js') }}"></script>
|
|
</body>
|
|
</html>
|