diff options
Diffstat (limited to 'dst/game.html')
-rw-r--r-- | dst/game.html | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/dst/game.html b/dst/game.html index ac2c8e6..5c9b9dd 100644 --- a/dst/game.html +++ b/dst/game.html @@ -9,7 +9,12 @@ <link rel="stylesheet" href="styles/style.css"> </head> <body> - <p class="header"><a href="/">adast.xyz</a></p> + <div style="min-height:100vh; display:flex; flex-direction:column; justify-content:space-between;"> + <div> + <header> + <a href="/" class="homepage-link">adast.xyz</a> + </header> + <div class="center"> <p class="note">May 7, 2021</p> <h1 id="my-game">My game</h1> @@ -31,8 +36,24 @@ <p>I’m in the process of rewriting a lot of systems in the game at the moment because I’m switching from janky p2p multiplayer to an authoritative server setup with client-side prediction <a href="https://www.gabrielgambetta.com/client-server-game-architecture.html">(more)</a>.</p> -<p><a href="https://www.youtube.com/c/adamski1">Gameplay clips</a><br/> -<a href="https://trello.com/b/ycQyrouQ">Follow my progress</a></p> - <p class="footer"><a href="/">adast.xyz</a></p> +<p>➤  <a href="https://www.youtube.com/c/adamski1">Gameplay clips</a><br/> +➤  <a href="https://trello.com/b/ycQyrouQ">Follow my progress</a></p> + </div class="center"> + </div> + <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> </body> </html> |