koel/resources/views/index.blade.php
2016-07-07 00:40:05 +08:00

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>