25 lines
383 B
HTML
25 lines
383 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ru">
|
||
|
|
{% include 'header.html' %}
|
||
|
|
<body>
|
||
|
|
{% include '/inc/init.html' %}
|
||
|
|
|
||
|
|
<section id="app" class="container">
|
||
|
|
{% include '/private/navbar.html' %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
{% endblock content %}
|
||
|
|
|
||
|
|
{% block breadcrumb %}
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% include 'footer.html' %}
|
||
|
|
</section>
|
||
|
|
|
||
|
|
{% block script %}{% endblock %}
|
||
|
|
|
||
|
|
{% include '/inc/run.html' %}
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|