impressum

This commit is contained in:
TheErrorExe 2025-03-08 18:34:00 +01:00
parent a2d13bba43
commit efa6097ce3
3 changed files with 149 additions and 0 deletions

BIN
help.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

123
impressum.html Normal file
View File

@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Impressum von Blockattack">
<title>Blockattack Impressum</title>
<link rel="icon" href="/help.ico">
<style>
body {
font-family: 'Verdana', Geneva, sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px;
text-align: center;
}
h1, h2 {
margin: 0;
font-weight: normal;
}
hr {
border: 0;
height: 1px;
background-color: #ccc;
margin: 20px 0;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
.section {
margin-bottom: 30px;
}
.contact-info, .register-info {
background-color: #ecf0f1;
border-left: 5px solid #3498db;
padding: 15px;
margin-bottom: 10px;
}
.section p {
margin: 8px 0;
}
.section strong {
font-weight: bold;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Impressum</h1>
<a href="/">Zurück zu BLOCKATTACK</a>
</header>
<div class="container">
<section class="section">
<p><strong>Angaben gemäß § 5 TMG:</strong></p>
<div class="contact-info">
<p><strong>Gomorrha UG (haftungsbeschränkt)</strong></p>
<p>Peter-Lurenz-Weg 24b<br>21077 Hamburg</p>
<p>Kontakt: <a href="mailto:gutz@mine-server.org">gutz@mine-server.org</a></p>
</div>
<p><strong>Vertreten durch:</strong></p>
<p>Finn Bastién Giese</p>
<p><strong>Registereintrag:</strong></p>
<div class="register-info">
<p>Eintragung im Handelsregister<br>Registergericht: Hamburg<br>Registernummer: HRB184486</p>
</div>
<p><strong>USt-IdNr gem. § 27a UStG:</strong><br>DE365903220</p>
<p>Als Kleinunternehmer im Sinne von § 19 Abs. 1 UStG wird keine Umsatzsteuer berechnet und deshalb auch nicht auf Rechnungen ausgewiesen.</p>
</section>
<section class="section">
<h2 id="urheberrecht">Urheberrecht:</h2>
<p>Alle Texte, Bilder und weiter hier veröffentlichten Informationen unterliegen dem Urheberrecht des Anbieters, soweit nicht Urheberrechte Dritter bestehen. In jedem Fall ist eine Vervielfältigung, Verbreitung oder öffentliche Wiedergabe ausschließlich im Falle einer widerruflichen und nicht übertragbaren Zustimmung des Anbieters gestattet.</p>
</section>
</div>
</body>
</html>

View File

@ -1,7 +1,33 @@
// JS File for Blockattack
// Impressum
document.addEventListener("DOMContentLoaded", function () {
const path = window.location.pathname;
if (path.startsWith("/wiki") || path.startsWith("/drmifo")) {
return;
}
const separator = document.createElement("p");
separator.style.display = "inline";
separator.textContent = " | ";
const link = document.createElement("a");
link.href = "/impressum.html";
link.style.display = "inline";
link.textContent = "Impressum";
document.querySelectorAll("footer").forEach(footer => {
footer.appendChild(separator.cloneNode(true));
footer.appendChild(link.cloneNode(true));
});
});
// Redirect
//window.location.href = "/IMG_1356.jpeg";
// Cookie Banner
document.addEventListener("DOMContentLoaded", function () {
const cookieKey = "cookieConsent";