Create frontpage

This commit is contained in:
Reimar 2024-03-23 17:14:13 +01:00
parent 707f39364f
commit 379f247d94
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
3 changed files with 31 additions and 7 deletions

BIN
public/img/Logo128x152.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -1,15 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TempleOS</title>
<link rel="stylesheet" href="style/templeos.css">
<style>
a {
color: #5555ff;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>TempleOS</h1>
<p>Documentation</p>
<a href="/Wb/Doc/Welcome.DD.HTML">Welcome to TempleOS</a><br>
<a href="/Wb/Doc/">Documentation files</a><br>
<a href="/Wb/">View source</a><br>
<body style="font-family: courier, monospace;">
<img src="/img/Logo128x152.jpg" alt="">
<h1>TempleOS Documentation</h1>
<p style="display: inline-block; text-align: left;"><!--
--><a href="/Wb/Doc/Welcome.DD.HTML">Welcome to TempleOS</a><br><!--
--><a href="/Wb/Doc/">Documentation files</a><br><!--
--><a href="/Wb/">View source</a><br><!--
--></p>
<br>
<footer>
<a href="https://git.reim.ar/Reimar/templeos-info">Website source</a>
</footer>
</body>
</html>

View File

@ -8,3 +8,10 @@ pre {
text-align: left;
}
footer {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}