2018-02-26 09:59:54 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ru">
|
|
|
|
|
{% include 'header.html' %}
|
|
|
|
|
<body>
|
2018-08-31 17:48:29 +03:00
|
|
|
<section id="app">
|
2018-02-26 09:59:54 +03:00
|
|
|
|
2018-08-31 17:48:29 +03:00
|
|
|
{% include 'navbar.html' %}
|
2018-02-26 09:59:54 +03:00
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
{% block body %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</div>
|
2018-08-31 17:48:29 +03:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
{% block script %}
|
|
|
|
|
{% endblock %}
|
2018-02-26 09:59:54 +03:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|