Restructure: site/ with modular code, matching Nubes Flask convention

This commit is contained in:
2026-07-23 10:48:14 +04:00
parent 51e4d7a4f6
commit 420d09e6b5
17 changed files with 21 additions and 39 deletions
+20
View File
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}Autotest Nubes{% endblock %}</title>
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='favicon.svg') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
<script src="https://unpkg.com/lucide@latest"></script>
{% block head %}{% endblock %}
</head>
<body>
<div class="layout">
<main class="content">
{% block content %}{% endblock %}
</main>
</div>
<script>lucide.createIcons();</script>
</body>
</html>