Compare commits
3 commits
e03bcca9d1
...
2c2e220974
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c2e220974 | |||
| 36666fabea | |||
| 4e24fda805 |
4 changed files with 55 additions and 88 deletions
5
build.sh
5
build.sh
|
|
@ -2,7 +2,4 @@
|
||||||
|
|
||||||
mkdir -p www
|
mkdir -p www
|
||||||
cp -rf src/assets www/assets
|
cp -rf src/assets www/assets
|
||||||
cp -f src/index.html www/
|
cp -f src/*.html www/
|
||||||
cp -f src/new-landing-page.html www/
|
|
||||||
cp -f src/impressum.html www/
|
|
||||||
cp -rf src/* www/
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./build.sh && rsync -rpog --chown=:www-data --chmod=D750,F640 www karlos@karlsruhe-os.de:/srv
|
./build.sh && rsync --recursive --delete --group --perms --chown=:www-data --chmod=D750,F640 www karlos@karlsruhe-os.de:/srv
|
||||||
|
|
|
||||||
|
|
@ -2,29 +2,60 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Welcome to KarlOS!</title>
|
<title>Welcome to KarlOS!</title>
|
||||||
<style>
|
<link rel="stylesheet" href="assets/style.css"/>
|
||||||
html {
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico"/>
|
||||||
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>
|
||||||
<h1>Welcome to KarlOS!</h1>
|
<div class="navbar">
|
||||||
<p>
|
<div class="navbutton">
|
||||||
<em>KarlOS</em> is a student effort in Karlsruhe to create a hobbyist Operating System from scratch.
|
<div class="logo">
|
||||||
|
<img src="assets/logo.png" alt="logo"/>
|
||||||
|
</div>
|
||||||
|
Karl<strong>OS</strong>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbutton">
|
||||||
|
<a href="#contact">Contact</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbutton">
|
||||||
|
<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.
|
||||||
</p>
|
</div>
|
||||||
<h2>Sitemap</h2>
|
<div class="softpage">
|
||||||
<ul>
|
<h2>Current Goals</h2>
|
||||||
<li><a href="https://karlsruhe-os.de/code/">Our Repositories (ForgeJo)</a></li>
|
<i>More information coming soon</i>
|
||||||
<li><a href="/impressum.html">Impressum</a></li>
|
</div>
|
||||||
</ul>
|
<div class="softpage" id="contact">
|
||||||
|
<h2>Contact us</h2>
|
||||||
|
<strong>E-Mail:</strong> 
|
||||||
|
<span>
|
||||||
|
kontakt
|
||||||
|
<div class="logo">
|
||||||
|
<img src="assets/arobas.png" alt="at"/>
|
||||||
|
</div>
|
||||||
|
karlsruhe-os.de
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
<pre class="impressum">
|
||||||
|
<b>Impressum</b>
|
||||||
|
Angaben gemäß § 5 DDG
|
||||||
|
Lennart Friebel
|
||||||
|
Kapellenstraße 70
|
||||||
|
76131 Karlsruhe
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
<!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="navbar">
|
|
||||||
<div class="navbutton">
|
|
||||||
<div class="logo">
|
|
||||||
<img src="assets/logo.png" alt="logo"/>
|
|
||||||
</div>
|
|
||||||
Karl<strong>OS</strong>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbutton">
|
|
||||||
<a href="#contact">Contact</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbutton">
|
|
||||||
<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>
|
|
||||||
<i>More information coming soon</i>
|
|
||||||
</div>
|
|
||||||
<div class="softpage" id="contact">
|
|
||||||
<h2>Contact us</h2>
|
|
||||||
<strong>E-Mail:</strong> 
|
|
||||||
<span>
|
|
||||||
kontakt
|
|
||||||
<div class="logo">
|
|
||||||
<img src="assets/arobas.png" alt="at"/>
|
|
||||||
</div>
|
|
||||||
karlsruhe-os.de
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="footer">
|
|
||||||
<pre class="impressum">
|
|
||||||
<b>Impressum</b>
|
|
||||||
Angaben gemäß § 5 DDG
|
|
||||||
Lennart Friebel
|
|
||||||
Kapellenstraße 70
|
|
||||||
76131 Karlsruhe
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Loading…
Add table
Reference in a new issue