-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (144 loc) · 4.69 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/logo.webp">
<link rel="icon" type="image/png" sizes="32x32" href="assets/logo.webp">
<title>igeljaeger</title>
</head>
<body>
<script>
setTimeout(function () {
document.querySelector('#copied').style.visibility = 'visible';
}, 2000);
function copy(text) {
navigator.clipboard.writeText(text);
let el = document.querySelector('#copied');
el.classList.add("fade");
setTimeout(() => el.classList.remove("fade"), 2500);
}
function toggleMenu() {
document.querySelector('.menu').classList.toggle("menu-enabled");
}
</script>
<div class="menu">
<p onclick="toggleMenu()"><i class="fa-solid fa-xmark"></i></p>
<a href="index.html">Deutsch</a>
<a href="en.html">English</a>
<a href="mailto: igeljaeger@tuta.com"><button>Email</button></a>
</div>
<header>
<img src="assets/logo.webp" alt="Igeljaeger Logo" width="150" height="150">
<nav>
<a href="index.html"><span>01.</span> Deutsch</a>
<a href="en.html"><span>02.</span> English</a>
<a href="mailto: igeljaeger@tuta.com"><button>Email</button></a>
</nav>
<div onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
</header>
<main>
<section id="me">
<h1>Servus, mein Name ist</h1>
<h2>igeljäger</h2>
<h1></h1>
<p>
Ich bin/mag: <br>
- ein katholischer Linuxsystemadministrator, aber ich bin auch in meiner Freizeit in Technik
interessiert, wenn etwas meine Aufmerksamkeit erregt<br>
- Wandern und lerne gerne über verschiedene Kulturen, insbesondere europäische<br>
- Burgen und Wälder<br>
- Japanische Musik<br>
- Anime und Videospiele<br><br>
</p>
<a href="#refs">
<button>Soziales</button>
</a>
</section>
<section id="refs">
<div>
<h2>Soziales</h2>
<p></p>
</div>
<ul>
<li>
<div>
<div>
<i class="fa-brands fa-discord"></i>
<a aria-label="Discord" target="__blank__" href="https://discord.com/channels/@me">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<h3>Discord</h3>
<p>Mein Discord Account: @igeljaeger</p>
</div>
</li>
<li>
<div>
<div>
<i class="fa-brands fa-steam"></i>
<a aria-label="Steam" target="__blank__" href="https://steamcommunity.com/id/igeljaeger/index.html">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<h3>Steam</h3>
<p>Sieh dir an, welche Art von Spielen ich mag</p>
</div>
</li>
<li>
<div>
<div>
<i class="fa-brands fa-square-lastfm"></i>
<a aria-label="LastFM" target="__blank__" href="https://www.last.fm/user/Igeljaeger">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<h3>LastFM</h3>
<p>Sieh dir an, welche Art von Musik ich mag</p>
</div>
</li>
<li>
<div>
<div>
<i class="fa-solid fa-list"></i>
<a aria-label="Anime" target="__blank__" href="https://docs.google.com/spreadsheets/d/1zDhTmLgzoJCX3XFwvPSGnvU5WGIaBzegD0xTGyHft1k/">
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<h3>Anime-Liste</h3>
<p>Tabelle mit den geschauten Zeichentricks aus Japan</p>
</div>
</li>
</ul>
</section>
<section id="donations">
<div>
<h2>Spenden</h2>
<p>Klicke um die Ethereum-Adresse zu kopieren:</p>
<noscript>Funktioniert nur mit aktiviertem JavaScript!</noscript>
</div>
<ul>
<!--- <li>
<i onclick="copy('btc')" class="webfonts-brands webfonts-btc coin-bitcoin"></i>
</li>
<li>
<i onclick="copy('xmr')" class="webfonts-brands webfonts-monero coin-monero"></i>
--->
<li>
<i onclick="copy('0x025e2A33F74B1eab9cC911708A12Ee40a0527F9a')" class="fa-brands fa-ethereum coin-eth"></i>
</li>
</ul>
<p id="copied" class="hidden" style="visibility: visible;">Kopiert!</p>
</section>
</main>
<footer>
Copyright © 2024 igeljaeger. All rights reserved<br>
</footer>
</body></html>