Initial commit

This commit is contained in:
Thomas Klaehn
2021-05-05 14:17:10 +02:00
commit a5b5637cfe
14 changed files with 1024 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>Garten</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/static/css/style.css" rel="stylesheet">
</head>
<body>
<h1>Garten</h1>
<div class="center">
<a href="/greenhouse_1">Gewächshaus 1</a><br>
<a href="/greenhouse_2">Gewächshaus 2</a><br>
<a href="/garden">Gemüsegarten</a>
</div>
</body>
<footer>
<nav>
<a href="/">Home</a>&nbsp|&nbsp
<a href="/greenhouse_1" class="center">Gewächshaus 1</a>&nbsp|&nbsp
<a href="/greenhouse_2" class="center">Gewächshaus 2</a>&nbsp|&nbsp
<a href="/garden" class="center">Gemüsegarten</a>
</nav>
</footer>
</html>