-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (140 loc) · 6.31 KB
/
index.html
File metadata and controls
146 lines (140 loc) · 6.31 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ptrpl4 on Github</title>
<meta
name="description"
content="Personal website of Pyotr Void, Software Engineer"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#348cb2" />
<!-- Favicon -->
<link
rel="icon"
href="assets/favicons/favicon.svg"
type="image/svg+xml"
/>
<link rel="icon" href="assets/favicons/favicon.ico" />
<link
rel="apple-touch-icon"
href="assets/favicons/apple-touch-icon.png"
/>
<link rel="manifest" href="assets/favicons/site.webmanifest" />
<!-- Styles -->
<link rel="stylesheet" href="assets/css/main.css" />
<noscript
><link rel="stylesheet" href="assets/css/noscript.css"
/></noscript>
</head>
<body class="is-preload">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<header id="header">
<h1>Pyotr Void</h1>
<p>
Software Engineer • Human
• Never asked for this
</p>
<nav aria-label="Social media links">
<ul>
<li>
<a
href="https://twitter.com/ptrpl4"
aria-label="Twitter"
>
<svg
aria-hidden="true"
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
fill="none"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"
></path>
</svg>
<span class="label">Twitter</span>
</a>
</li>
<li>
<a
href="https://github.com/ptrpl4"
aria-label="GitHub"
>
<svg
aria-hidden="true"
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
fill="none"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"
></path>
<path d="M9 18c-4.51 2-5-2-7-2"></path>
</svg>
<span class="label">GitHub</span>
</a>
</li>
<li>
<a
href="mailto:ptrpl4@icloud.com"
aria-label="Email"
>
<svg
aria-hidden="true"
viewBox="0 0 24 24"
width="24"
height="24"
stroke="currentColor"
fill="none"
stroke-width="1.75"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M3 7a2 2 0 0 1 2-3h14a2 2 0 0 1 2 3v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z"
></path>
<path d="M3 7l9 6 9-6"></path>
</svg>
<span class="label">Email</span>
</a>
</li>
</ul>
</nav>
</header>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
setTimeout(function () {
document.body.classList.remove("is-preload");
}, 100);
});
if ("ontouchstart" in window) {
document.addEventListener(
"touchmove",
function (e) {
if (window.innerHeight === window.outerHeight)
e.preventDefault();
},
{ passive: false },
);
window.addEventListener("orientationchange", function () {
window.scrollTo(0, 0);
});
}
</script>
</body>
</html>