40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Marco</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- App identity -->
|
|
<meta name="application-name" content="Marco">
|
|
<meta name="apple-mobile-web-app-title" content="Marco">
|
|
<meta name="theme-color" content="#2a3743">
|
|
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="/web-app-manifest.json">
|
|
|
|
<!-- Icons -->
|
|
<link rel="icon" href="/icons/icon.svg" type="image/svg+xml">
|
|
|
|
<!-- iOS -->
|
|
<link rel="apple-touch-icon" href="/icons/icon-180.png">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
|
|
<!-- Windows -->
|
|
<meta name="msapplication-TileColor" content="#F6E9A6">
|
|
<meta name="msapplication-TileImage" content="/icons/icon-144.png">
|
|
|
|
<link rel="stylesheet" href="/app/styles/app.css">
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import Application from './app/app';
|
|
import environment from './app/config/environment';
|
|
|
|
Application.create(environment.APP);
|
|
</script>
|
|
</body>
|
|
</html>
|