initial webapp draft

This commit is contained in:
Aron Petau 2025-09-11 16:01:32 +02:00
commit 4f2723b767
22 changed files with 713 additions and 0 deletions

24
templates/base.html Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}Studio Einszwovier{% endblock %}</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<a href="/" class="logo-link">
<img src="/static/images/logo.png" alt="Studio Einszwovier Logo" class="logo">
</a>
<nav>
<a href="/">Home</a> |
<a href="/about">About</a> |
<a href="/cost">Cost Calculator</a>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>