Инициализация

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich
2022-03-06 05:21:24 +10:00
commit ab752bf34f
39 changed files with 2648 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<!doctype html>
<html lang="ru">
<head>
{% include 'head.html' %}
<link href="/css/main.css" rel="stylesheet">
<title>
{% block title %}
Библеотека Сурикова
{% endblock %}
</title>
</head>
<body>
{% include 'header.html' %}
<aside>
{% include 'sidebar.html' %}
</aside><!----><main>
{% block main %}
{% include 'calculators/index.html' %}
{% endblock %}
</main>
{% include 'footer.html' %}
</body>
{% include 'js.html' %}
</body>
</html>