refactor: Templatise tasks

This commit is contained in:
2025-01-27 22:49:34 +03:00
parent 65c6468414
commit 28dba79cdf
4 changed files with 27 additions and 49 deletions
+17
View File
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="ru">
{% block head %}
{% include '_head.html' %}
{% endblock %}
<body>
{% include '_header.html' %}
{% block content %}{% endblock %}
{% include '_sidenav.html' %}
<img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
</body>
</html>