-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
52 lines (47 loc) · 2.26 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link type="image/ico" rel="icon" href="<%= PUBLIC_URL %>/favicon/favicon-32x32.png">
<link rel="mask-icon" href="<%= PUBLIC_URL %>/favicon/logo.svg" color="#222">
<link rel="apple-touch-icon" sizes="180x180" href="<%= PUBLIC_URL %>/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<%= PUBLIC_URL %>/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<%= PUBLIC_URL %>/favicon/favicon-16x16.png">
<link rel="manifest" href="<%= PUBLIC_URL %>/favicon/manifest.json">
<title>Anran758's Homepage</title>
<meta name="description" content="web 开发的碎碎念">
<meta name="keywords" content="前端、前端开发、JavaScript、vue、react、小程序开发、数据可视化">
<meta property="og:type" content="website">
<meta property="og:title" content="Anran758's Home">
<meta property="og:url" content="https://anran758.github.io/">
<meta property="og:site_name" content="Anran758's Home">
<meta property="og:description" content="Web 开发的示例与指南">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="anran758">
<meta property="article:tag" content="前端、前端开发、JavaScript、vue、react、小程序开发、数据可视化">
<meta name="twitter:card" content="summary">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=<%= GOOGLE_TRACKING_ID %>"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', '<%= GOOGLE_TRACKING_ID %>');
</script>
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?<%= BAIDU_TRACKING %>";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>