Initial commit

This commit is contained in:
root
2023-04-27 14:46:18 +00:00
commit bbca1a86d1
35 changed files with 2418 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<main>
<h1>404(NOT FOUND)</h1>
</main>
+12
View File
@@ -0,0 +1,12 @@
<main>
<h1>Impressum</h1>
<h2>Angaben gem&auml;&szlig; &sect; 5 TMG</h2>
<p>Alexander Klein<br />
Ringstra&szlig;e 15a<br />
26899 Rhede (Ems) Brual</p>
<h2>Kontakt</h2>
<p>Telefon: +49 157 89217099<br />
E-Mail: klein-alexander1@gmx.de</p>
</main>
+3
View File
@@ -0,0 +1,3 @@
<footer>
<p>(C) 2022 Kleiax Nerdprofessionals</p>
</footer>
+3
View File
@@ -0,0 +1,3 @@
<header>
<h1>Rover Routen</h1>
</header>
+4
View File
@@ -0,0 +1,4 @@
<nav>
<a href="/" ><img src="/img/menu/home.svg">Info</a>
<a href="imprint" ><img src="/img/menu/legal.svg">Impressum</a>
</nav>
+4
View File
@@ -0,0 +1,4 @@
<aside>
<h2>Status</h2>
<script type="module" src="/js/status.js"></script>
</aside>
+5
View File
@@ -0,0 +1,5 @@
<main>
<h1>Info</h1>
<div id="mainDivBody">lol</div>
<script type="module" src="js/info.js"></script>
</main>
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Rover Routen</title>
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/menu.css">
</head>
<body>
<%- include("../includes/nav.ejs") %>
<%- include("../includes/header.ejs") %>
<%- body %>
<%- include("../includes/status.ejs") %>
<%- include("../includes/footer.ejs") %>
</body>
</html>