Files
myapp-full/myapp/templates/private/skeleton.html
2022-05-03 22:34:52 +03:00

25 lines
383 B
HTML

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
{% include '/inc/init.html' %}
<section id="app" class="container">
{% include '/private/navbar.html' %}
{% block content %}
{% endblock content %}
{% block breadcrumb %}
{% endblock %}
{% include 'footer.html' %}
</section>
{% block script %}{% endblock %}
{% include '/inc/run.html' %}
</body>
</html>