Files
smart-mirror/base.html

14 lines
387 B
HTML
Raw Normal View History

2026-04-27 06:01:00 +02:00
<!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>