Files
myapp-full/myapp/templates/skeleton.html

34 lines
454 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
<section id="app">
2019-10-27 19:40:03 +03:00
<div class="container">
{% include 'navbar.html' %}
2020-02-08 05:05:43 +03:00
{% block content %}
{% endblock content %}
2019-10-27 19:40:03 +03:00
{% block breadcrumb %}
{% endblock %}
{% include 'footer.html' %}
</div>
</section>
{% block script %}
2019-04-26 19:38:23 +03:00
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
},
methods: {
}
})
</script>
{% endblock script %}
</body>
</html>