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

25 lines
508 B
HTML
Raw Normal View History

2022-05-03 22:34:52 +03:00
<!DOCTYPE html>
<html lang="ru">
2023-02-18 09:22:43 +03:00
{% include 'header.html' %}
2022-05-03 22:34:52 +03:00
<body>
<section id="app" class="container">
{% include '/private/navbar.html' %}
{% block content %}
{% endblock content %}
{% block breadcrumb %}
{% endblock %}
{% include 'footer.html' %}
</section>
2023-02-18 09:22:43 +03:00
<script type="text/javascript" src="{{ STATIC }}/tinymce/tinymce.min.js"></script>
2022-05-03 22:34:52 +03:00
2023-02-18 09:22:43 +03:00
<script type="text/javascript" src="{{ STATIC }}/codemirror/codemirror.js"></script>
2022-05-03 22:34:52 +03:00
2023-02-18 09:22:43 +03:00
<script type="text/javascript" src="/app.js"></script>
2022-05-03 22:34:52 +03:00
</body>
</html>