2018-02-26 09:59:54 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ru">
|
|
|
|
|
{% include 'header.html' %}
|
|
|
|
|
<body>
|
2022-05-03 22:34:52 +03:00
|
|
|
{% include '/inc/init.html' %}
|
|
|
|
|
<section id="app" class="container">
|
2018-08-31 17:48:29 +03:00
|
|
|
{% include 'navbar.html' %}
|
2018-02-26 09:59:54 +03:00
|
|
|
|
2020-02-08 05:05:43 +03:00
|
|
|
{% block content %}
|
|
|
|
|
{% endblock content %}
|
2019-10-27 19:40:03 +03:00
|
|
|
|
|
|
|
|
{% block breadcrumb %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% include 'footer.html' %}
|
2018-08-31 17:48:29 +03:00
|
|
|
</section>
|
|
|
|
|
|
2022-05-03 22:34:52 +03:00
|
|
|
{% block script %}{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% include '/inc/run.html' %}
|
|
|
|
|
|
2018-02-26 09:59:54 +03:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|