koel/resources/views/index.blade.php
2015-12-27 21:19:25 +07:00

26 lines
980 B
PHP

<!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() }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="/public/img/apple-touch-icon-precomposed.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100&subset=latin,latin-ext,vietnamese,greek-ext,greek,cyrillic,cyrillic-ext" rel="stylesheet">
<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>