2015-12-13 04:42:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Koel</title>
|
|
|
|
|
|
|
|
<meta name="description" content="{{ config('app.tagline') }}">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2015-12-30 04:34:25 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2016-01-05 11:17:00 +00:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
2016-01-28 05:35:51 +00:00
|
|
|
<link rel="manifest" href="{{ App::staticUrl('manifest.json') }}" />
|
|
|
|
<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') }}">
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ App::rev('css/vendors.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ App::rev('css/app.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<app></app>
|
|
|
|
|
|
|
|
<script src="{{ App::rev('js/vendors.js') }}"></script>
|
|
|
|
<script src="{{ App::rev('js/main.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|