add privacy policy, several fixes

This commit is contained in:
2025-04-07 02:07:51 +02:00
parent fa3ab8ab36
commit d16d574db9
4 changed files with 50 additions and 3 deletions
+3
View File
@@ -28,7 +28,10 @@
</nav> </nav>
</main> </main>
<footer> <footer>
Diese Seite enthält kein JavaScript &ndash; für Allergiker geeignet.
<br />
&copy; 2025 Niklas&nbsp;Elsbrock &copy; 2025 Niklas&nbsp;Elsbrock
&middot; <a href="/privacy.html">Datenschutz</a>
&middot; <a href="/licenses.html">Open-Source-Lizenzen</a> &middot; <a href="/licenses.html">Open-Source-Lizenzen</a>
</footer> </footer>
</body> </body>
+1
View File
@@ -39,6 +39,7 @@
<p> <p>
<a href="/" data-icon="&#xf060;">Zurück zur Hauptseite</a> <a href="/" data-icon="&#xf060;">Zurück zur Hauptseite</a>
&middot; <a href="/privacy.html">Datenschutz</a>
</p> </p>
</main> </main>
</body> </body>
+41
View File
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<!-- Copyright © 2025 Niklas Elsbrock -->
<html lang="de">
<head>
<meta charset="UTF-8" />
<title>Niklas Elsbrock &ndash; Datenschutz</title>
<meta name="description" content="Persönliche Website von Niklas Elsbrock." />
<meta name="copyright" content="Niklas Elsbrock" />
<meta name="viewport" content="width=device-width, initial-scale=0.75" />
<link rel="stylesheet" href="/resources/style.css" />
</head>
<body>
<main>
<h1>Datenschutz</h1>
<p>Verantwortlich für diese Website ist</p>
<address>
Niklas Elsbrock<br />
<a href="mailto:mail@nelsbrock.de">mail@nelsbrock.de</a>
</address>
<h2>Keine Erfassung von Besucherinformationen</h2>
<p>
Beim Besuch der Website unter www.nelsbrock.de werden keine
personenbezogenen Daten verarbeitet. Zugriffsprotokolle sind
deaktiviert.
</p>
<hr />
<p>
<a href="/" data-icon="&#xf060;">Zurück zur Hauptseite</a>
</p>
</main>
</body>
</html>
+5 -3
View File
@@ -137,6 +137,7 @@
html { html {
font-size: 20px; font-size: 20px;
scrollbar-width: none;
} }
html, html,
@@ -172,6 +173,7 @@ hr {
main { main {
animation: fadeIn ease 1s; animation: fadeIn ease 1s;
animation-iteration-count: 1; animation-iteration-count: 1;
margin: 2em;
} }
.card { .card {
@@ -229,7 +231,6 @@ main {
.card nav li::after { .card nav li::after {
width: 0; width: 0;
float: right; float: right;
display: inline-block;
content: "\f100"; content: "\f100";
font-family: 'Font Awesome 6 Free Solid'; font-family: 'Font Awesome 6 Free Solid';
opacity: 0; opacity: 0;
@@ -279,8 +280,9 @@ main {
footer { footer {
position: absolute; position: absolute;
right: 0; right: 0;
bottom: 0; top: 100%;
margin: 0.25rem; padding: 0.25rem;
text-align: right;
font-size: 0.6rem; font-size: 0.6rem;
color: var(--footer-text-color); color: var(--footer-text-color);
} }