Files
home-automation/app/templates/base.html
T

17 lines
391 B
HTML
Raw Normal View History

2026-04-19 20:19:58 +02:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ app_name }}{% endblock %}</title>
2026-04-20 20:40:04 +02:00
<link rel="icon" href="data:,">
<link rel="stylesheet" href="/static/styles.css">
2026-04-19 20:19:58 +02:00
</head>
<body>
<main class="shell">
{% block content %}{% endblock %}
</main>
</body>
</html>