Files
myapp-full/myapp/templates/skeleton.html
2023-01-08 03:57:41 +03:00

24 lines
336 B
HTML

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
<section id="app" class="container">
{% include 'navbar.html' %}
{% block content %}
{% endblock content %}
{% block breadcrumb %}
{% endblock %}
{% include 'footer.html' %}
</section>
<script type="text/javascript" src="/app.js"></script>
</body>
</html>