blob: 0b82a1c6af3221e7efa2a6cc39bdde8a6a55d98e (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>adast.xyz</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<a href="/" class="homepage-link">adast.xyz</a>
•
<a id="darkmodetoggle" class="fa fa-moon-o" onclick="switchTheme()" aria-hidden="true"></a>
</header>
<h2>⚠️ Test Site ⚠️</h2>
<p>Hello there!</p>
<p>My name is Adam and I am a computer nerd studying at Aalborg University. I am interested in space, game dev, sailing and the outdoors.</p>
<p>I’m currently working as a student developer at E-Komplet and I work on my multiplayer old-school arena shooter in my free time. I occasionally post videos of my game along with other stuff <a href="https://youtube.com/c/adamski1">here</a>.</p>
<h2 id="posts">Posts</h2>
<p>➤ <a href="game.html">Project Aftershock</a></p>
<footer>
<a href="/" class="homepage-link">adast.xyz</a>
—
<a href="https://git.adast.xyz/explore/repos">Gitea</a>
•
<a href="https://github.com/adastx">Github</a>
•
<a href="https://odysee.com/@adamski:f">Odysee</a>
•
<a href="https://youtube.com/c/adamski1">Youtube</a>
•
<a href="https://www.twitch.tv/adastx">Twitch</a>
•
<a href="https://steamcommunity.com/id/adastx">Steam</a>
</footer>
<script src="scripts/darktheme.js"></script>
</body>
</html>
|