Add files via upload

This commit is contained in:
Sinned
2026-04-27 06:01:00 +02:00
committed by GitHub
parent 867742782c
commit f4a2db5896
11 changed files with 1616 additions and 19 deletions

13
base.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{% block title %}Smart Mirror{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/mirror.css') }}"/>
{% block extra_head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>