Initial commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<main>
|
||||
<h1>404(NOT FOUND)</h1>
|
||||
</main>
|
||||
@@ -0,0 +1,12 @@
|
||||
<main>
|
||||
<h1>Impressum</h1>
|
||||
|
||||
<h2>Angaben gemäß § 5 TMG</h2>
|
||||
<p>Alexander Klein<br />
|
||||
Ringstraß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>
|
||||
@@ -0,0 +1,3 @@
|
||||
<footer>
|
||||
<p>(C) 2022 Kleiax Nerdprofessionals</p>
|
||||
</footer>
|
||||
@@ -0,0 +1,3 @@
|
||||
<header>
|
||||
<h1>Rover Routen</h1>
|
||||
</header>
|
||||
@@ -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>
|
||||
@@ -0,0 +1,4 @@
|
||||
<aside>
|
||||
<h2>Status</h2>
|
||||
<script type="module" src="/js/status.js"></script>
|
||||
</aside>
|
||||
@@ -0,0 +1,5 @@
|
||||
<main>
|
||||
<h1>Info</h1>
|
||||
<div id="mainDivBody">lol</div>
|
||||
<script type="module" src="js/info.js"></script>
|
||||
</main>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user