1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 06:32:34 +01:00
flox/client/views/app.blade.php

22 lines
604 B
PHP
Raw Normal View History

2015-07-27 20:49:37 +02:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2015-07-28 19:05:15 +02:00
<meta name="csrf_token" content="{{ csrf_token() }}">
<title>Flox - Collect Your Movie Watch List</title>
2015-07-27 20:49:37 +02:00
<link href="{{ url('assets/favicon.ico') }}" rel="icon" type="image/x-icon">
<link href="{{ url('assets/css/app.css') }}" rel="stylesheet">
</head>
2015-07-28 12:26:29 +02:00
<body>
2015-07-27 20:49:37 +02:00
<div class="flox"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="{{ url('assets/js/config.js') }}"></script>
2015-07-30 19:40:23 +02:00
<script src="{{ url('assets/js/app.js') }}"></script>
2015-07-27 20:49:37 +02:00
</body>
</html>