-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (74 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<!-- Open Graph protocol for stuff like discord embedding some content. -->
<html prefix="og: https://ogp.me/ns#" lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This is my personal portfolio page. It features my projects and it has some blogging too."
/>
<!-- Open Graph meta tags -->
<meta property="og:title" content="1Kill2Steal's personal portfolio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://1kill2steal.netlify.app/" />
<meta
property="og:image"
content="https://1kill2steal.netlify.app/public/Hu_Tao_855.jpg"
/>
<meta property="og:image:type" content="image/jpg" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta
property="og:image:alt"
content="The 1Kill2Steal's portfolio page icon"
/>
<meta
property="og:description"
content="This is my personal portfolio page. It features my projects and it has some blogging too."
/>
<title>1Kill2Steal</title>
<!-- import stylesheet -->
<link data-trunk rel="copy-dir" href="css/" />
<link data-trunk rel="sass" href="css/index.scss" />
<!-- import font -->
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://www.nerdfonts.com/assets/css/webfont.css"
/>
<!-- Public directory -->
<link data-trunk rel="copy-dir" href="public/" />
<!-- Skill Icons -->
<link data-trunk rel="copy-dir" href="public/skill-icons" />
<!-- Favicon -->
<link rel="icon" href="public/favicon.ico" type="image/x-icon" />
<!-- import footer images -->
<link data-trunk rel="copy-dir" href="public/socials" />
<!-- import Hu Tao images -->
<link data-trunk rel="copy-dir" href="hutao/pics/" />
<link data-trunk rel="copy-dir" href="hutao/pics_uncompressed/" />
<!-- JSON config for the Hu Tao images -->
<link data-trunk rel="copy-dir" href="hutao/json" />
</head>
<body>
<noscript
style="
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
height: 100dvh;
color: white;
"
>
<h1>Sorry, you need JavaScript</h1>
<p>This is a fully WASM site</p>
</noscript>
</body>
</html>