21 lines
692 B
HTML
21 lines
692 B
HTML
<!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>
|