-
Notifications
You must be signed in to change notification settings - Fork 31
/
init.html
47 lines (39 loc) · 1.22 KB
/
init.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="cmn-hans">
<head>
<meta charset="utf-8">
<!--PC-->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="renderer" content="webkit">
<!--WAP-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="format-detection" content="telephone=no, email=no, address=no">
<!--<link rel="dns-prefetch" href="">-->
<!--<meta name="keywords" content="">-->
<!--<meta name="description" content="">-->
<link rel="icon" type="image/ico" href="favicon.ico">
<link rel="icon" type="image/png" href="favicon.png">
<title>${NAME}</title>
<link href="" type="text/css" rel="stylesheet">
<script>
/* 兼容不支持console.log到alert */
if (typeof console === 'undefined' || console === null || typeof console.log !== 'function') {
console = {};
console.log = function (msg) {
alert(msg);
};
}
</script>
</head>
<body>
<div class="m-full-bg" style="background-image: url(); background-color: #;">
<div class="full-wrap">
</div>
</div>
<script type="text/javascript" src=""></script>
<script type="text/javascript">
$(function () {
});
</script>
</body>
</html>