Added index.html (made mistake when adding through git commit -a -m
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s

This commit is contained in:
BlueFox 2025-02-19 21:19:35 +01:00
parent 17ae4f86db
commit 02f3c87812
Signed by: BlueFox
GPG Key ID: 327233DA85435270

48
new_site/src/index.html Normal file
View File

@ -0,0 +1,48 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<link href="./griddy.css" rel="stylesheet">
<title>Privacynerd's new home :)</title>
</head>
<body>
<h1 id="headline">Hey dear stanger!</h1>
<p>This is <a href="https://privacynerd.de/"><code>privacynerd.de</code></a>. I'm mostly known as BlueFox and host some services in the internet. I love coding and publish blog posts every know and then. <br />
<i>Stay optimistic!</i></p>
<hr>
<div class="row">
<div class="col sm-10 md-5">1 - Lorem ipsum dolor sit amet consectetur, adipisicing elit. At animi blanditiis, necessitatibus, unde ut, odit dolore deserunt quos nemo tenetur veritatis non dolorum ullam. Obcaecati, tempora. Quam totam atque earum.</div>
<div class="col sm-10 md-5">2 - Lorem ipsum dolor sit amet consectetur, adipisicing elit. At animi blanditiis, necessitatibus, unde ut, odit dolore deserunt quos nemo tenetur veritatis non dolorum ullam. Obcaecati, tempora. Quam totam atque earum.</div>
</div>
<hr>
<div class="row">
<div class="col sm-10 md-5">
<div class="badge">Other services</div>
</div>
<div class="col sm-10 md-5">
<div class="badge">
Social & Contact
<hr class="align-left">
<a href="https://git.privacynerd.de/BlueFox">Bluefox</a> |
<a href="https://codeberg.org/BlueFox">Bluefox</a> |
<a href="https://crowdin.com/profile/bluefox4">bluefox4</a> |
<a href="https://github.com/bluefox42">bluefox42</a> |
<a href="https://hub.docker.com/u/bluefox42">bluefox42</a>
</div>
</div>
</div>
<hr>
<div class="footer">
Made with ❤️ in Germany | <a href="https://privacynerd.de/impressum?referrer=http://127.0.0.1:8000/griddy.html">Imprint</a>
</div>
<script>
const greetings = ["What's up?", "Hey dear stranger!", "Hello you!", "G'day m'ae", "Greetings!", "Nice to hear from you!"];
headline = document.getElementById("headline");
headline.innerText = greetings[Math.floor(Math.random() * greetings.length)];
</script>
</body>
</html>