-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 951 Bytes
/
index.html
File metadata and controls
28 lines (24 loc) · 951 Bytes
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1,minimum-scale=1">
<title>soul-app</title>
<!-- 安卓平台添加主屏幕,WebApp模式 -->
<meta name="mobile-web-app-capable" content="yes">
<link rel ="icon" type="image/x-icon" href="static/logo.png">
<!-- ios平台添加主屏幕,WebApp模式 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta name="apple-mobile-web-app-title" content="soul-app"/>
<link rel="apple-touch-icon-precomposed" href="static/logo.png"/>
<!-- UC强制全屏 -->
<meta name="full-screen" content="yes">
<!-- QQ强制全屏 -->
<meta name="x5-fullscreen" content="true">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>