28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>@yield("title")</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link type="text/css" rel="stylesheet" href="{{ asset("/css/normalize.css") }}">
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
|
|
<link rel="manifest" href="manifest.json">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="application-name" content="Ekapp">
|
|
<meta name="apple-mobile-web-app-title" content="Ekapp">
|
|
<meta name="theme-color" content="00788a">
|
|
<meta name="msapplication-navbutton-color" content="00788a">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="msapplication-starturl" content="/login">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="icon" type="images/svg" sizes="150x150" href="appIcon.svg">
|
|
<link rel="apple-touch-icon" type="images/svg" sizes="150x150" href="appIcon.svg">
|
|
</head>
|
|
<body style="background-color: #00788a;">
|
|
@yield("content")
|
|
|
|
<script src="{{ mix("/js/app.js") }}"></script>
|
|
@yield("scripts")
|
|
</body>
|
|
</html>
|