-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html dir="ltr" lang="{{language}}">
<head>
<meta charset="utf-8">
<title>{{app-title}}</title>
<base href="{{base-href}}" />
<meta name="Description" content="{{description}}">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0">
<meta name="theme-color" content="#16161d">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="x-ua-compatible" content="IE=Edge">
<meta name="ufe-shell-context" content="{{ufe-shell-context}}">
<meta name="ufe-selector" content="{{ufe-selector}}">
<meta name="ufe-pwa-mode" content="{{pwa-mode}}">
<meta name="csp-nonce" content="{{csp-nonce}}" />
<script type="module" src="./modules/app.esm.js"></script>
<script nomodule src="./modules/app.js"></script>
<link href="./modules/app.css" rel="stylesheet">
<link rel="apple-touch-icon" href="{{touch_icon}}">
<link rel="icon" href="{{favicon}}">
<link rel="manifest" href="./manifest.json" crossorigin="use-credentials">
</head>
<body>
</body>
</html>