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