restructured files to be in public folder
Deploy static site / deploy (push) Failing after 27s

This commit is contained in:
2026-04-23 12:06:45 +02:00
parent 08927017b1
commit 0b9c72fdf9
7 changed files with 5 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="robots" content="noindex nofollow">
<link rel="stylesheet" href="../styles.css">
<title>Persönliche Webseite</title>
</head>
<body>
<nav>
<a class="navbar" href="/en/index.html">English</a>
</nav>
<h1>Hi, ich bin Marco</h1>
<p>und das ist meine Webseite</p>
<h2>Wieso?</h2>
<p>In Zeiten von KI-'Slop' bewirkt ein wenig meschlichkeit sehr viel.<br> Ich lese gerne blogs und posts die von Menschen geschrieben werden, also wollte ich meinen eigenen schreiben.<br> Suchmaschinen wie Kagi, die einen das 'small-web' durchsuchen lassen, werden immer populärer. Die kreativen Websites von anderen Leuten zu sehen hat mich ebenso inspiriert<br> und meine HTML und CSS Fähigkeiten aufzufrischen schadet auch nicht.<br> Wird diese Website einen Schönheitswettbewerb gewinnen? Nein.<br> Doch wenigstens ist sie handgemacht.</p>
</body>
</html>
+20
View File
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex nofollow">
<link rel="stylesheet" href="../styles.css">
<title>Personal Website</title>
</head>
<body>
<nav>
<a class="navbar" href="/de/index.html">Deutsch</a>
</nav>
<h1>Hi, I'm Marco</h1>
<p>and this is my website</p>
<h2>Why?</h2>
<p>In times of AI-slop, a little humanity goes a long way.<br> I love reading blogs and posts made by humans, so I decided to create my own.<br> Search-engines like Kagi, that allow you to search the 'small web', grow more popular.<br> Seeing other people's creative websites inspired me as well and on top of that:<br> I'm refreshing some HTML and CSS skills!<br> Will this website win a beauty contest? No.<br> But at least there's a human behind it.</p>
</body>
</html>
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex nofollow">
<meta http-equiv="refresh" content="0; url=/en/index.html">
</head>
<body>
</body>
</html>
+2
View File
@@ -0,0 +1,2 @@
User-agent: *
Disallow: /
+14
View File
@@ -0,0 +1,14 @@
body {
text-align: center;
background-color: #222222;
}
h1, h2, h3, h4, h5, p {
color: #DDDDEE
}
a.navbar {
color: #DD7FB6;
text-decoration: none
}