-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
102 lines (95 loc) · 3.91 KB
/
about.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" >
<link rel="icon" type="image/png" href="./public/images/favicon.png?v=1">
<link rel="stylesheet" href="./public/stylesheets/style.css">
<meta name="author" content="Vladimir Herdman">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta
name="keywords"
content="Coding, Web Development, Student, College, Computer Science,
Learner, Code"
>
<meta name="mobile-web-app-capable" content="yes">
<title>About | Vladimir Herdman</title>
<meta name="title" content="About | Vladimir Herdman">
<meta
name="description"
content="Vladimir Herdman is a Computer Science student currently
attending Ohio Northern University."
>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://vladimir-herdman.github.io/about.html">
<meta property="og:title" content="About | Vladimir Herdman">
<meta
property="og:description"
content="Vladimir Herdman is a Computer Science student currently
attending Ohio Northern University."
>
<meta
property="og:image"
content="https://vladimir-herdman.github.io/public/images/favicon.png?v=1"
>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://vladimir-herdman.github.io/about.html">
<meta property="twitter:title" content="About | Vladimir Herdman">
<meta
property="twitter:description"
content="Vladimir Herdman is a Computer Science student currently
attending Ohio Northern University."
>
<meta
property="twitter:image"
content="https://vladimir-herdman.github.io/public/images/favicon.png?v=1"
>
<meta name="theme-color" content="rgb(17, 17, 17)">
<meta name="msapplication-navbutton-color" content="rgb(17, 17, 17)">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
>
</head>
<body>
<header>
<span>
<a href="./" id="header_name" class="header-link"><b><span class="header-underline">Vladimir Herdman</span></b><span class="code-arrows"></span></a>
</span>
<nav class="navbar" id="navbar">
<a href="./about.html" class="header-link"><span class="header-underline">About</span><span class="code-arrows"></span></a>
<a href="./experience.html" class="header-link"><span class="header-underline">Experience</span><span class="code-arrows"></span></a>
<a href="./projects.html" class="header-link"><span class="header-underline">Projects</span><span class="code-arrows"></span></a>
<a href="./contact.html" class="header-link"><span class="header-underline">Contact</span><span class="code-arrows"></span></a>
</nav>
</header>
<footer id="footer"></footer>
<script defer>
"use strict"
const navbar = document.getElementById("navbar");
const currentURL = window.location.href;
const header_links = [document.getElementById("header_name"), ...navbar.children];
window.onload = () => {
setTimeout(() => {
navbar.classList.add("loaded");
}, 500);
setTimeout(() => {
for (const link of header_links) {
const link_split = link.href.split("/");
if (link.href === currentURL) {
link.classList.add("current-link-loaded");
break;
}
}
}, 2850);
};
const footer = document.getElementById("footer");
const current_year = new Date().getFullYear();
console.log(current_year);
footer.innerHTML = `<p>© ${current_year} Vladimir Herdman | Check out some projects on my <a class="link-with-underline" href="https://github.com/Vladimir-Herdman" target="_blank">GitHub</a></p>`;
footer.innerHTML += '<p>Website HTML, CSS, and JS statically hosted through GitHub Pages at <a class="link-with-underline" href="https://github.com/Vladimir-Herdman/Vladimir-Herdman.github.io">this repository</a></p>';
</script>
</body>
<html>