Checked in current/legacy landing page
This commit is contained in:
parent
a0acd67074
commit
53d740b344
3 changed files with 82 additions and 47 deletions
5
build.sh
5
build.sh
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
mkdir -p www
|
||||
cp -rf src/assets www/assets
|
||||
cp -f src/index.html www/index.html
|
||||
cp -f src/impressum.html www/impressum.html
|
||||
cp -f src/index.html www/
|
||||
cp -f src/new-landing-page.html www/
|
||||
cp -f src/impressum.html www/
|
||||
cp -rf src/* www/
|
||||
|
|
|
|||
|
|
@ -2,52 +2,29 @@
|
|||
<html>
|
||||
<head>
|
||||
<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>
|
||||
<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">
|
||||
<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>
|
||||
<h1>Welcome to KarlOS!</h1>
|
||||
<p>
|
||||
<em>KarlOS</em> is a student effort in Karlsruhe to create 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.
|
||||
</p>
|
||||
<h2>Sitemap</h2>
|
||||
<ul>
|
||||
<li><a href="https://karlsruhe-os.de/code/">Our Repositories (ForgeJo)</a></li>
|
||||
<li><a href="/impressum.html">Impressum</a></li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
57
src/new-landing-page.html
Normal file
57
src/new-landing-page.html
Normal 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>
|
||||
Loading…
Add table
Reference in a new issue