This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (103 loc) · 4.62 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
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
<!DOCTYPE html>
<html lang="en-US">
<head><meta charset="utf-8">
<meta name="author" content="Jan Wendling">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="icon" href="assets/images/favicon.png" />
<link media="all" rel="stylesheet" href="assets/css/bulma.min.css" />
<link media="all" rel="stylesheet" href="assets/css/bulma.social.min.css" />
<link media="all" rel="stylesheet" href="assets/css/screen.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css"
/>
<title>Welcome to jwndlng.github.io!</title><script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
</head>
<body>
<header class="container is-desktop">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
jwndlng.github.io
</a>
<a role="button" class="navbar-burger mb-5" aria-label="menu" aria-expanded="false" data-target="navbar-main">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-main" class="navbar-menu">
<div id="mainNavigation" class="navbar-start"><div class="navbar-item is-active"><span class="is-primary button">About</span></div><a class="navbar-item" href="posts.html"><span class="button is-white">My Posts</span></a><a class="navbar-item" href="projects.html"><span class="button is-white">My Projects</span></a></div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a href="https://github.com/jwndlng" class="button is-small is-github is-black">
<span class="icon"><i class="fab fa-lg fa-github"></i></span>
</a>
<a href="https://gitlab.com/jwndlng" class="button is-small is-gitlab is-black">
<span class="icon"><i class="fab fa-lg fa-gitlab"></i></span>
</a>
<a href="https://linkedin.com/in/jan-wendling" class="button is-small is-linkedin is-black">
<span class="icon"><i class="fab fa-lg fa-linkedin"></i></span>
</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<div id="main" class="container is-desktop">
<h1 class="title is-1">Welcome to jwndlng.github.io!</h1>
<div class="content">
<p>This is my personal reference and platform to showcase my projects.<br />
You will find a list of <a href="projects.html">projects</a> and some <a href="posts.html">posts</a> about software development and security.</p>
<p>Enjoy!</p>
</div>
</div>
<section class="hero is-small is-primary">
<div class="hero-body container is-desktop has-text-centered buttons">
<a href="https://github.com/jwndlng" class="button is-medium is-github is-black-primary">
<span class="icon"><i class="fab fa-lg fa-github"></i></span>
<span>GitHub</span>
</a>
<a href="https://gitlab.com/jwndlng" class="button is-medium is-gitlab is-black-primary">
<span class="icon"><i class="fab fa-lg fa-gitlab"></i></span>
<span>GitLab</span>
</a>
<a href="https://linkedin.com/in/jan-wendling" class="button is-medium is-linkedin is-black-primary">
<span class="icon"><i class="fab fa-lg fa-linkedin"></i></span>
<span>LinkedIn</span>
</a>
</div>
</section>
<footer class="footer">
<div class="level container is-desktop has-text-centered">
<div class="level-item copyright">© 2021 - jwndlng.github.io</div>
<div class="level-item">
<div id="footNavigation" class="navbar-start"><a class="navbar-item" href="about-this-website.html"><span class="button is-white">About this Website</span></a></div>
</div>
</div>
</footer>
</body>
</html>