mstar-webserver/templates/index.html
mStar aka a person 1e60fdb8ff Fix links in index template
Embed file stuff into app
2024-01-08 16:59:45 +01:00

78 lines
No EOL
2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
<link rel="stylesheet" href="/static/styles/index.css">
<meta charset="UTF-8">
<title>m*</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
* {
font-family: Cantarell, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to my personal webpage</h1>
<p>Here you'll be able to find various information about me, including social network links/names</p>
<h3>Some information about me</h3>
<table>
<tr>
<td>Pronouns</td>
<td>She/Her</td>
</tr>
<tr>
<td>Egg cracked</td>
<td>Jan/Feb 2023</td>
</tr>
<tr>
<td>Lang</td>
<td>German, English</td>
</tr>
</table>
<br>
<h3>You can find me on:</h3>
<table>
<tr>
<th>Service</th>
<th>Link/Username</th>
</tr>
<tr>
<td>Mastodon</td>
<td><a rel="me" href="https://woem.men/@mstar">https://mk.absturztau.be/@m_star</a></td>
</tr>
<tr>
<td>Discord</td>
<td><p>m_star</p></td>
</tr>
<tr>
<td>Pronouns page</td>
<td><a href="https://en.pronouns.page/@m_evil">https://en.pronouns.page/@m_evil</a></td>
</tr>
<tr>
<td>Gitlab</td>
<td><a href="https://gitlab.com/mstarongitlab">https://gitlab.com/beckersam</a></td>
</tr>
<tr>
<td>Github</td>
<td><a href="https://github.com/mstarongithub/">https://github.com/mstarongithub/</a></td>
</tr>
<tr>
<td>Twitch</td>
<td><a href="https://twitch.tv/mstarontwitch">https://twitch.tv/mstarontwitch</a></td>
</tr>
</table>
<ul>
<li><a href="https://foxgirls.love/web">Fren Erika</a></li>
<li><a href="https://linktr.ee/akijam">Fren Aki</a></li>
</ul>
<hr>
<p>Todo: Add proper styling</p>
<footer>
<p>Last updated: 08.01.2024: 14:19</p>
<p>
Privacy notice: This webserver stores no information
</p>
</footer>
</body>
</html>