forked from WebStackPage/WebStackPage.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 2.14 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
<!DOCTYPE html>
<html lang="zh">
<head>
<link rel="shortcut icon" href="./assets/images/favicon.png">
<meta charset="UTF-8">
<title>BUCT导航站</title>
<script>
if (navigator.appName == "Netscape") {
var language = navigator.language;
} else {
var language = navigator.browserLanguage;
}
if (language.indexOf("en") > -1) {
document.location.href = "en/index.html";
} else if (language.indexOf("zh") > -1) {
document.location.href = "cn/index.html";
} else {
document.location.href = "en/index.html";
}
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="viggo" />
<title>WebStack.cc - Collection of resources and tools for Designers</title>
<meta name="keywords" content="BUCT导航站- powered by CCSN">
<meta name="description" content="BUCT导航站- powered by CCSN">
<!-- / FB Open Graph -->
<meta property="og:type" content="article">
<meta property="og:url" content="https://buctsnc.cn/">
<meta property="og:title" content="BUCT导航站- powered by CCSN">
<meta property="og:description" content="BUCT导航站- powered by CCSN">
<meta property="og:image" content="https://buctsnc.cn/assets/images/webstack_banner_cn.png">
<meta property="og:site_name" content="BUCT导航站- powered by CCSN">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="BUCT导航站- powered by CCSN">
<meta name="twitter:description" content="BUCT导航站- powered by CCSN">
<meta name="twitter:image" content="https://buctsnc.cn/assets/images/webstack_banner_cn.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H1TZRCC41D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H1TZRCC41D');
</script>
</head>
<body>
</body>
</html>