Files
myapp-full/myapp/templates/user/skeleton.html
2020-02-08 05:05:43 +03:00

34 lines
459 B
HTML

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
<section id="app">
<div class="container">
{% include 'user/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>