34 lines
454 B
HTML
34 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
{% include 'header.html' %}
|
|
<body>
|
|
<section id="app">
|
|
|
|
<div class="container">
|
|
{% include 'navbar.html' %}
|
|
|
|
{% block content %}
|
|
{% endblock content %}
|
|
|
|
{% block breadcrumb %}
|
|
{% endblock %}
|
|
|
|
{% include 'footer.html' %}
|
|
</div>
|
|
</section>
|
|
|
|
{% block script %}
|
|
<script type="text/javascript">
|
|
var app = new Vue({
|
|
el: '#app',
|
|
data: {
|
|
},
|
|
methods: {
|
|
}
|
|
})
|
|
</script>
|
|
{% endblock script %}
|
|
|
|
</body>
|
|
</html>
|