18 lines
302 B
HTML
Raw Normal View History

2025-01-27 22:49:34 +03:00
<!DOCTYPE html>
<html lang="ru">
{% block head %}
2025-01-27 23:30:36 +03:00
{%- include '_head.html' %}
{%- endblock %}
2025-01-27 22:49:34 +03:00
<body>
2025-01-27 23:30:36 +03:00
{% include '_header.html' -%}
2025-01-27 22:49:34 +03:00
2025-01-27 23:30:36 +03:00
{% block content -%}{% endblock -%}
2025-01-27 22:49:34 +03:00
2025-01-27 23:30:36 +03:00
{% include '_sidenav.html' %}
2025-01-27 22:49:34 +03:00
<img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
</body>
</html>