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

26 lines
375 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
2022-05-03 22:34:52 +03:00
{% include '/inc/init.html' %}
<section id="app" 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' %}
</section>
2022-05-03 22:34:52 +03:00
{% block script %}{% endblock %}
{% include '/inc/run.html' %}
</body>
</html>