-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
68 lines (63 loc) · 2.93 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<!--1. 简体中文页面:html lang=zh-cmn-Hans
2. 繁体中文页面:html lang=zh-cmn-Hant
3. 英语页面:html lang=en-->
<head>
<meta charset="utf-8">
<!--设置编码方式 utf-8 -->
<meta name="renderer" content="webkit"/>
<!--360浏览器使用google chrome frame-->
<meta name="browsermode" content="application"/>
<!--uc应用模式-->
<meta name="x5-page-mode" content="app">
<!--qq应用模式-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!--如果有google chrome frame,则以gcf渲染,否则以最新ie内核渲染-->
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1.0, user-scalable=0"/>
<!--设置视口,禁止缩放-->
<meta http-equiv="Cache-Control" content="no-siteapp" />
<!--禁止百度转码-->
<meta name="keywords" content="vue cnode">
<!--页面内关键字-->
<!--<meta name="description" content="your description">-->
<!--页面描述-->
<!--<meta name="author" content="author,email address">-->
<!--作者信息-->
<!--<meta name="robots" content="index,follow">-->
<!--定义网页搜索引擎索引方式,robotterms 是一组使用英文逗号「,」分割的值,通常有如下几种取值:none,noindex,nofollow,all,index和follow。-->
<!--<meta name="uc-biz-native-gallery" content="no">-->
<!--ios设备特有-->
<meta name="apple-mobile-web-app-title" content="cnode">
<!--添加到主屏幕后的标题-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!--是否启用Webapp全屏模式-->
<!--<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> -->
<!-- 设置状态栏的背景颜色,只有在 `"apple-mobile-web-app-capable" content="yes"` 时生效 -->
<meta name="format-detection" content="telephone=no,email=no" />
<!--禁止将数字是被为电话号码/邮箱-->
<!-- uc强制竖屏 -->
<meta name="screen-orientation" content="portrait">
<!-- QQ强制竖屏 -->
<meta name="x5-orientation" content="portrait">
<!-- UC强制全屏 -->
<meta name="full-screen" content="yes">
<!-- QQ强制全屏 -->
<meta name="x5-fullscreen" content="true">
<title>vue-cnode</title>
<link rel="stylesheet" href="./static/css/reset.css">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91534508-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Google analysis -->
</body>
</html>