20 lines
247 B
HTML
20 lines
247 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
{% include 'header.html' %}
|
|
<body>
|
|
<section id="app">
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
<div class="container">
|
|
{% block body %}
|
|
{% endblock %}
|
|
</div>
|
|
</section>
|
|
|
|
{% block script %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|