Checked in current/legacy landing page

This commit is contained in:
Thomas Oltmann 2025-08-18 16:08:27 +02:00
parent a0acd67074
commit 53d740b344
3 changed files with 82 additions and 47 deletions

View file

@ -2,6 +2,7 @@
mkdir -p www mkdir -p www
cp -rf src/assets www/assets cp -rf src/assets www/assets
cp -f src/index.html www/index.html cp -f src/index.html www/
cp -f src/impressum.html www/impressum.html cp -f src/new-landing-page.html www/
cp -f src/impressum.html www/
cp -rf src/* www/ cp -rf src/* www/

View file

@ -2,52 +2,29 @@
<html> <html>
<head> <head>
<title>Welcome to KarlOS!</title> <title>Welcome to KarlOS!</title>
<link rel="stylesheet" href="assets/style.css"/> <style>
html {
color-scheme: light dark;
}
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
line-height: 1.5;
}
</style>
</head> </head>
<body> <body>
<div class="header"> <h1>Welcome to KarlOS!</h1>
<div class="button"> <p>
<div class="logo"> <em>KarlOS</em> is a student effort in Karlsruhe to create a hobbyist Operating System from scratch.
<img src="assets/logo.png" alt="logo"/>
</div>
Karl<strong>OS</strong>
</div>
<div class="button">
<a href="#contact">Contact</a>
</div>
<div class="button">
<a href="/code/">Code</a>
</div>
</div>
<div class="banner">
<h1>Hobby OS Dev @ KIT</h1>
</div>
<div class="content">
<div class="softpage">
<h2>About us</h2>
We are a student group in Karlsruhe creating a hobbyist Operating System from scratch.
The current goal of the project is to develop a simple monolithic kernel for 64-bit Intel / AMD PCs, The current goal of the project is to develop a simple monolithic kernel for 64-bit Intel / AMD PCs,
which could serve as a platform for experimentation in the future. which could serve as a platform for experimentation in the future.
</div>
<div class="softpage">
<a id="contact"></a>
<h2>Contact Us</h2>
<p>Angaben gemäß § 5 DDG</p>
<p>
Lennart Friebel<br>
Kapellenstraße 70<br>
76131 Karlsruhe<br>
</p> </p>
<p> <h2>Sitemap</h2>
<strong>Kontakt:</strong><br> <ul>
E-Mail: <span>kontakt<span>@<span>karlsruhe-os.de</span></span></span></br> <li><a href="https://karlsruhe-os.de/code/">Our Repositories (ForgeJo)</a></li>
</p> <li><a href="/impressum.html">Impressum</a></li>
</div> </ul>
</div>
<div class="footer">
Copyright 2024-2025
</div>
</body> </body>
</html> </html>

57
src/new-landing-page.html Normal file
View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to KarlOS!</title>
<link rel="stylesheet" href="assets/style.css"/>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico"/>
</head>
<body>
<div class="header">
<div class="button">
<div class="logo">
<img src="assets/logo.png" alt="logo"/>
</div>
Karl<strong>OS</strong>
</div>
<div class="button">
<a href="#contact">Contact</a>
</div>
<div class="button">
<a href="/code/">Code</a>
</div>
</div>
<div class="banner">
<h1>Hobby OS Dev @ KIT</h1>
</div>
<div class="content">
<div class="softpage">
<h2>About us</h2>
We are a student group in Karlsruhe creating a hobbyist Operating System from scratch.
The current goal of the project is to develop a simple monolithic kernel for 64-bit Intel / AMD PCs,
which could serve as a platform for experimentation in the future.
</div>
<div class="softpage">
<h2>Current Goals</h2>
</div>
<div class="softpage">
<a id="contact"></a>
<h2>Contact us</h2>
<p>Angaben gemäß § 5 DDG</p>
<p>
Lennart Friebel<br>
Kapellenstraße 70<br>
76131 Karlsruhe<br>
</p>
<p>
<strong>Kontakt:</strong><br>
E-Mail: <span>kontakt<span>@<span>karlsruhe-os.de</span></span></span></br>
</p>
</div>
</div>
<div class="footer">
Copyright 2024-2025
</div>
</body>
</html>