-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/logo.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Simple Robot 文档引导站</title>
<!-- 百度统计 -->
<!--suppress ES6ConvertVarToLetConst -->
<script>
var _hmt = _hmt || [];
(function () {
const hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?045f67a122223db9432c7856fc942fad";
const s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- Google Adsense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4062299174917944"
crossorigin="anonymous"></script>
<script>
window['addAds'] = function(){
let childList = document.getElementsByClassName('gads');
for (let i = 0; i < childList.length; i++) {
(adsbygoogle = window.adsbygoogle || []).push({});
}
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1JWL2DDTB4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1JWL2DDTB4');
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>