-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title><%- title %></title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic|Material+Icons" rel="stylesheet">
<link rel="icon" href="<%- base %>favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="<%- base %>img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<%- base %>img/icons/favicon-16x16.png">
<meta name="theme-color" content="#448AFF">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="<%- title %>">
<link rel="apple-touch-icon" href="<%- base %>img/icons/apple-touch-icon-152x152.png">
<link rel="mask-icon" href="<%- base %>img/icons/safari-pinned-tab.svg" color="#448AFF">
<meta name="msapplication-TileImage" content="<%- base %>img/icons/msapplication-icon-144x144.png">
<meta name="msapplication-TileColor" content="#000000">
<script type="module" src="/src/main.js"></script>
</head>
<body>
<noscript>
<strong>We're sorry but <%- title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
</body>
</html>