35 lines
513 B
HTML
35 lines
513 B
HTML
<!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>
|