koel/resources/views/index.blade.php

29 lines
1 KiB
PHP
Raw Normal View History

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">
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-02-02 16:38:57 +00:00
2016-03-25 23:53:47 +00:00
<meta name="theme-color" content="#282828">
<meta name="msapplication-navbutton-color" content="#282828">
<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>