2021-07-30 22:56:43 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{app()->getLocale()}}">
|
|
|
|
<head>
|
2021-08-06 12:46:17 +02:00
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
2021-07-30 22:56:43 +02:00
|
|
|
<title>@lang('OpenStaManager')</title>
|
2021-08-06 12:46:17 +02:00
|
|
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{asset('images/favicon/apple-touch-icon.png')}}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{asset('images/favicon/favicon-32x32.png')}}">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{asset('images/favicon/favicon-16x16.png')}}">
|
|
|
|
<link rel="manifest" href="{{asset('images/favicon/site.webmanifest')}}">
|
|
|
|
<link rel="mask-icon" href="{{asset('images/favicon/safari-pinned-tab.svg')}}" color="#da532c">
|
|
|
|
<link rel="shortcut icon" href="{{asset('images/favicon/favicon.ico')}}">
|
|
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
|
|
<meta name="msapplication-config" content="{{asset('images/favicon/browserconfig.xml')}}">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
|
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet"/>
|
2021-07-30 22:56:43 +02:00
|
|
|
<script src="{{ mix('js/app.js') }}" defer></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@inertia
|
|
|
|
</body>
|
|
|
|
</html>
|