2019-05-28 17:29:15 +02:00
|
|
|
<!DOCTYPE html>
|
2021-12-01 13:47:20 +01:00
|
|
|
<html class="has-background-black-ter" lang="{!! $lang !!}">
|
2019-05-28 17:29:15 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2020-09-29 22:46:03 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, shrink-to-fit=no, viewport-fit=cover">
|
2019-05-28 17:29:15 +02:00
|
|
|
<meta name="csrf-token" content="{{csrf_token()}}">
|
2020-01-12 20:12:25 +01:00
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
2020-03-24 13:24:33 +01:00
|
|
|
<title>{{ config('app.name') }}</title>
|
2020-01-12 23:02:47 +01:00
|
|
|
|
|
|
|
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('favicon.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" href="{{ asset('favicon_lg.png') }}" />
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="{{ asset('favicon_lg.png') }}" />
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
|
2019-05-28 17:29:15 +02:00
|
|
|
<link href=" {{ mix('css/app.css') }}" rel="stylesheet">
|
|
|
|
</head>
|
2019-06-24 00:29:14 +02:00
|
|
|
<body class="has-text-lighter">
|
2019-05-28 17:29:15 +02:00
|
|
|
<div id="app">
|
|
|
|
<app></app>
|
|
|
|
</div>
|
2020-02-27 16:58:04 +01:00
|
|
|
<script type="text/javascript">
|
2020-03-11 16:32:19 +01:00
|
|
|
var appSettings = {!! $appSettings !!};
|
|
|
|
var appVersion = '{{ config("app.version") }}';
|
2021-12-03 22:50:28 +01:00
|
|
|
var appLocales = {!! $locales !!};
|
2020-02-27 16:58:04 +01:00
|
|
|
</script>
|
2020-03-12 12:19:23 +01:00
|
|
|
<script src="{{ mix('js/manifest.js') }}"></script>
|
|
|
|
<script src="{{ mix('js/vendor.js') }}"></script>
|
2019-05-28 17:29:15 +02:00
|
|
|
<script src="{{ mix('js/app.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|